Refactor imports

* refactor: implement import lint
This commit is contained in:
Carlos Valente
2022-06-11 23:17:16 +02:00
committed by GitHub
parent c576b6308e
commit dda92ba3a8
111 changed files with 482 additions and 288 deletions
@@ -1,18 +1,20 @@
import React from 'react';
import { Box } from '@chakra-ui/layout';
import ErrorBoundary from '../../../common/components/errorBoundary/ErrorBoundary';
import PlaybackControl from './PlaybackControl';
import styles from '../../editors/Editor.module.scss';
import style from '../../editors/Editor.module.scss';
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={styles.playback}>
<Box className={style.playback}>
<h1>Timer Control</h1>
<FiArrowUpRight className={style.corner} onClick={(event) => handleLinks(event, 'timercontrol')} />
<div className={styles.content}>
<div className={style.content}>
<ErrorBoundary>
<PlaybackControl />
</ErrorBoundary>