import { memo } from 'react'; import * as Editor from '../../../common/components/editor-utils/EditorUtils'; import ErrorBoundary from '../../../common/components/error-boundary/ErrorBoundary'; import ViewNavigationMenu from '../../../common/components/navigation-menu/ViewNavigationMenu'; import ProtectRoute from '../../../common/components/protect-route/ProtectRoute'; import { handleLinks } from '../../../common/utils/linkUtils'; import { getIsNavigationLocked } from '../../../externals'; import PlaybackControl from './PlaybackControl'; import style from './TimerControlExport.module.scss'; export default memo(TimerControlExport); function TimerControlExport() { const isExtracted = window.location.pathname.includes('/timercontrol'); return ( {!isExtracted && handleLinks('timercontrol', event)} />} {isExtracted && }
); }