diff options
| author | Nidboj132 <lol2s@vp.pl> | 2023-02-26 15:49:11 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-26 15:49:11 +0100 |
| commit | 2d1d2cc4e7982c9bbf7daa0ac4ea317960d0416a (patch) | |
| tree | 53b6a66cbb0b0ab49efe1c876878fed4d69e212e /frontend/src/index.js | |
| parent | actually add update profile route (#30) (diff) | |
| download | lphub-2d1d2cc4e7982c9bbf7daa0ac4ea317960d0416a.tar.gz lphub-2d1d2cc4e7982c9bbf7daa0ac4ea317960d0416a.tar.bz2 lphub-2d1d2cc4e7982c9bbf7daa0ac4ea317960d0416a.zip | |
Add files via upload
Diffstat (limited to '')
| -rw-r--r-- | frontend/src/index.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/frontend/src/index.js b/frontend/src/index.js new file mode 100644 index 0000000..20f2cdc --- /dev/null +++ b/frontend/src/index.js | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | import React from 'react'; | ||
| 2 | import ReactDOM from 'react-dom/client'; | ||
| 3 | import App from './App'; | ||
| 4 | |||
| 5 | const root = ReactDOM.createRoot(document.getElementById('root')); | ||
| 6 | root.render( | ||
| 7 | <React.StrictMode> | ||
| 8 | <App/> | ||
| 9 | </React.StrictMode> | ||
| 10 | ); | ||