import { Button } from "@components/Button"; import { cx } from "@/cva.config"; import { AvailableSidebarViews } from "@/hooks/stores"; export default function SidebarHeader({ title, setSidebarView, }: { title: string; setSidebarView: (view: AvailableSidebarViews | null) => void; }) { return (

{title}

); }