import useScrollIntoView from '../../../../common/hooks/useScrollIntoView'; import { isOntimeCloud } from '../../../../externals'; import GenerateLinkFormExport from '../../../sharing/GenerateLinkFormExport'; import type { PanelBaseProps } from '../../panel-list/PanelList'; import * as Panel from '../../panel-utils/PanelUtils'; import InfoNif from '../network-panel/NetworkInterfaces'; import ReportSettings from './ReportSettings'; import URLPresets from './URLPresets'; export default function FeaturePanel({ location }: PanelBaseProps) { const presetsRef = useScrollIntoView('presets', location); const linkRef = useScrollIntoView('link', location); const reportRef = useScrollIntoView('report', location); return ( <> Sharing and reporting
Share Ontime Link {!isOntimeCloud && ( <> Ontime is streaming on the following network interfaces )}
); }