import { Button } from '@/components/ui/button'; import { cn } from '@/lib/utils'; import { X } from 'lucide-react'; import { useState } from 'react'; import CategoryPanel from './category-panel'; export default ({ tab = 'generalForm', parserId, }: { tab: 'generalForm' | 'chunkMethodForm'; parserId: string; }) => { const [visible, setVisible] = useState(false); return (
{ setVisible(false); }} >
); };