From d406a2ea92af76f2d5709901cab9240df125f6bc Mon Sep 17 00:00:00 2001 From: Daseul Kim Date: Tue, 8 Oct 2024 16:20:38 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20components>ui>QSelect.jsx=20?= =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ui/QSelect.jsx | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 src/components/ui/QSelect.jsx 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
- - ) -}