mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 07:53:54 +00:00
dda92ba3a8
* refactor: implement import lint
25 lines
775 B
React
25 lines
775 B
React
import React from 'react';
|
|
import { Box } from '@chakra-ui/layout';
|
|
import { FiArrowUpRight } from '@react-icons/all-files/fi/FiArrowUpRight';
|
|
|
|
import ErrorBoundary from '../../../common/components/errorBoundary/ErrorBoundary';
|
|
import { handleLinks } from '../../../common/utils/linkUtils';
|
|
|
|
import PlaybackControl from './PlaybackControl';
|
|
|
|
import style from '../../editors/Editor.module.scss';
|
|
|
|
export default function TimerControlExport() {
|
|
return (
|
|
<Box className={style.playback}>
|
|
<h1>Timer Control</h1>
|
|
<FiArrowUpRight className={style.corner} onClick={(event) => handleLinks(event, 'timercontrol')} />
|
|
<div className={style.content}>
|
|
<ErrorBoundary>
|
|
<PlaybackControl />
|
|
</ErrorBoundary>
|
|
</div>
|
|
</Box>
|
|
);
|
|
}
|