"use client" import { useState } from "react" import { Button } from "@/components/ui/button" import { Dialog, DialogContent, DialogHeader, DialogTitle } from "@/components/ui/dialog" import { Input } from "@/components/ui/input" import { Search, Plus } from "lucide-react" import { Table } from "@/components/ui/table" interface WechatAccountSelectorProps { selectedAccounts: string[] onChange: (accounts: string[]) => void } export function WechatAccountSelector({ selectedAccounts, onChange }: WechatAccountSelectorProps) { const [open, setOpen] = useState(false) return (
选择微信账号
序号 微信号 在线状态 操作
暂无数据
) }