diff --git a/src/components/ui/QSelect.jsx b/src/components/ui/QSelect.jsx deleted file mode 100644 index 198595d5..00000000 --- a/src/components/ui/QSelect.jsx +++ /dev/null @@ -1,35 +0,0 @@ -import { Select, SelectItem } from '@nextui-org/react' -import styles from './QSelect.module.css' -import { useEffect } from 'react' - -const animals = [ - { key: 'cat', label: 'Cat' }, - { key: 'dog', label: 'Dog' }, - { key: 'elephant', label: 'Elephant' }, - { key: 'lion', label: 'Lion' }, - { key: 'tiger', label: 'Tiger' }, - { key: 'giraffe', label: 'Giraffe' }, - { key: 'dolphin', label: 'Dolphin' }, - { key: 'penguin', label: 'Penguin' }, - { key: 'zebra', label: 'Zebra' }, - { key: 'shark', label: 'Shark' }, - { key: 'whale', label: 'Whale' }, - { key: 'otter', label: 'Otter' }, - { key: 'crocodile', label: 'Crocodile' }, -] - -export default function QSelect() { - useEffect(() => {}, []) - return ( - <> -
- -
-
test
- - ) -}