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

import Timer from './components/Timer';

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

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