import { useAppState } from "../../store/appState";
import ProjectList from "../projects/ProjectList";
import SettingsPanel from "../settings/SettingsPanel";
export default function Sidebar() {
const { sidebarView, setSidebarView } = useAppState();
return (
{/* Nav tabs */}
{/* Content */}
{sidebarView === "projects" ?
:
}
);
}