diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-01-04 17:55:22 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-01-04 17:55:22 +0100 |
commit | 247a5bd0f8f4ce77bc5d02ccb1a315b254b23e8f (patch) | |
tree | b6e136a591cfba630eab85081b795557d36d81d9 /src/index.tsx | |
parent | 599de74536b243c67d99c92a2e25eb1b155d58ee (diff) |
naar typescript
Diffstat (limited to 'src/index.tsx')
-rw-r--r-- | src/index.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/index.tsx b/src/index.tsx new file mode 100644 index 0000000..62adcf3 --- /dev/null +++ b/src/index.tsx @@ -0,0 +1,12 @@ +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') +); + |