aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
blob: 713039f68d1b497506c9a2ce015a3d3293a2d194 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import React from 'react';
import ReactDOM from 'react-dom';
import './style.css';

import Timer from './components/Timer';

const App: React.FC = () => {
  return (<Timer />);
};

document.body.style.overflow = 'hidden';
ReactDOM.render(<App />, document.getElementById('root'));