diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-07-22 20:23:22 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-07-22 20:23:22 +0530 |
commit | 55c5f64755e5d964603f4cc60bdf1ceeccf7df21 (patch) | |
tree | 54af4d034c43ac2755892b7a8d463c8e20b30c98 /src/index.js | |
parent | 39093b0522c0f153f7f212c6b3088b359d5cb114 (diff) |
removed typescript "bloat"
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..463687c --- /dev/null +++ b/src/index.js @@ -0,0 +1,4 @@ +import ReactDOM from 'react-dom'; +import App from './components/App'; + +ReactDOM.render(<App />, document.getElementById('root')); |