import useScrollIntoView from '../../../../common/hooks/useScrollIntoView'; import type { PanelBaseProps } from '../../panel-list/PanelList'; import * as Panel from '../../panel-utils/PanelUtils'; import EditorSettingsForm from '../interface-panel/EditorSettingsForm'; import GeneralPanelForm from './GeneralPanelForm'; import ViewSettingsForm from './ViewSettingsForm'; export default function GeneralPanel({ location }: PanelBaseProps) { const generalRef = useScrollIntoView('settings', location); const editorRef = useScrollIntoView('editor', location); const viewRef = useScrollIntoView('view', location); return ( <> App Settings
); }