diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2022-02-05 13:34:24 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2022-02-05 13:34:24 +0200 |
| commit | 232c1e536d22dbb46b7d11fc389695d440343495 (patch) | |
| tree | 95665d538410f4754b7ebced93c7bdc2b15132b0 /src/main.tsx | |
Initial commit
Diffstat (limited to 'src/main.tsx')
| -rw-r--r-- | src/main.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main.tsx b/src/main.tsx new file mode 100644 index 0000000..606a3cf --- /dev/null +++ b/src/main.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import ReactDOM from 'react-dom' +import './index.css' +import App from './App' + +ReactDOM.render( + <React.StrictMode> + <App /> + </React.StrictMode>, + document.getElementById('root') +) |
