| 4 | import { X } from 'lucide-react' |
| 5 | |
| 6 | interface TagInputProps { |
| 7 | unique: boolean |
| 8 | } |
| 9 | |
| 10 | const TagInput: React.FC<TagInputProps> = ({ unique = false }) => { |
| 11 | const [keywords, setKeywords] = useState<string[]>(['ansub', 'syntax']) |
nothing calls this directly
no outgoing calls
no test coverage detected