diff --git a/src/components/create-folder-button.tsx b/src/components/create-folder-button.tsx new file mode 100644 index 0000000..b9aee76 --- /dev/null +++ b/src/components/create-folder-button.tsx @@ -0,0 +1,18 @@ +import { FolderIcon } from "lucide-react"; +import { Button } from "./ui/button"; +import CreateFolderModal from "./database/create-folder-modal"; +import { useState } from "react"; + +interface Props {} +export default function CreateFolderButton(props: Props) { + const [visible, setVisible] = useState(false); + return ( +