import { NavLink } from '@mantine/core'; import { Fragment, useState } from 'react'; import { BiPlus } from 'react-icons/bi'; import CreateCollectionDrawer from '@/features/collections/components/createCollectionDrawer/CreateCollectionDrawer'; export default function CreateCollectionShortcut() { const [isDrawerOpen, setIsDrawerOpen] = useState(false); return ( } onClick={() => setIsDrawerOpen(true)} /> setIsDrawerOpen(false)} /> ); }