import useScrollIntoView from '../../../../common/hooks/useScrollIntoView'; import type { PanelBaseProps } from '../../panel-list/PanelList'; import * as Panel from '../../panel-utils/PanelUtils'; import CustomFields from './custom-fields/CustomFields'; import UrlPresetsForm from './UrlPresetsForm'; export default function FeatureSettingsPanel({ location }: PanelBaseProps) { const customFieldsRef = useScrollIntoView('custom', location); const urlPresetsRef = useScrollIntoView('urlpresets', location); return ( <> Feature Settings
); }