diff options
author | Vidhu Kant Sharma <araararagikoyomi@protonmail.com> | 2021-07-25 01:13:24 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-25 01:13:24 +0530 |
commit | 6b58ffac163b9b3637bfab1294069c55b6d5702c (patch) | |
tree | 95f270639f3a2fc6aa936961d9787a59a63b079e /src/index.js | |
parent | 166f8d4262729b2f771c30f8e71a305052cc13d5 (diff) | |
parent | b353dda4df7fc7be973e52a2f529360e7bfc8fed (diff) |
Merge pull request #1 from MikunoNaka/multiplayer
Merge multiplayer into master
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')); |