import { useRef, useState } from "react"; import { Drawer, DrawerContent, DrawerOverlay } from "./ui/drawer"; import { MemoryIcon } from "@/assets/Memories"; import { cn } from "@/lib/utils"; import { MemoriesBar } from "./Sidebar/MemoriesBar"; export interface Props extends React.ButtonHTMLAttributes { hide?: boolean; } export function MemoryDrawer({ className, hide = false, ...props }: Props) { const [activeSnapPoint, setActiveSnapPoint] = useState< number | null | string >(0.1); return (
); }