import useScrollIntoView from '../../../../common/hooks/useScrollIntoView'; import { PanelBaseProps } from '../../settingsStore'; import * as Panel from '../PanelUtils'; import GeneralPanelForm from './GeneralPanelForm'; import UrlPresetsForm from './UrlPresetsForm'; import ViewSettingsForm from './ViewSettingsForm'; export default function GeneralPanel({ location }: PanelBaseProps) { const manageRef = useScrollIntoView('manage', location); const viewRef = useScrollIntoView('view', location); const urlPresetsRef = useScrollIntoView('urlpresets', location); return ( <> App Settings
); }