import useScrollIntoView from '../../../../common/hooks/useScrollIntoView'; import { PanelBaseProps } from '../../settingsStore'; import * as Panel from '../PanelUtils'; import ManageProjects from './ManageProjects'; import ProjectData from './ProjectData'; export default function ProjectPanel({ location }: PanelBaseProps) { const projectRef = useScrollIntoView('data', location); const manageRef = useScrollIntoView('manage', location); return ( <> Project
); }