import useScrollIntoView from '../../../../common/hooks/useScrollIntoView'; import type { PanelBaseProps } from '../../panel-list/PanelList'; import * as Panel from '../../panel-utils/PanelUtils'; import QuickStart from '../../quick-start/QuickStart'; import type { SettingsOptionId } from '../../useAppSettingsMenu'; import ManageProjects from './ManageProjects'; interface ProjectPanelProps extends PanelBaseProps { setLocation: (location: SettingsOptionId) => void; } export default function ProjectPanel({ location, setLocation }: ProjectPanelProps) { const manageProjectsRef = useScrollIntoView('list', location); const handleQuickClose = () => { setLocation('project'); }; return ( <> Project
); }