"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 DeviceSelectorProps { selectedDevices: string[] onChange: (devices: string[]) => void } export function DeviceSelector({ selectedDevices, onChange }: DeviceSelectorProps) { const [open, setOpen] = useState(false) return (
选择设备
序号 设备id 当前客服 在线状态 操作
暂无数据
) }