summaryrefslogtreecommitdiff
path: root/src/index.tsx
blob: 3b08ba82757ac67b67ea1f6ccd5b401144e1d3d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from 'react';
import ReactDOM from 'react-dom';
import 'tailwindcss/tailwind.css';
import Paper from './components/Paper';


const App: React.FC = () => (
  <Paper>
    Hello, world!
  </Paper>
);

ReactDOM.render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
  document.getElementById('root')
);