diff options
Diffstat (limited to 'web/app/index.jsx')
-rw-r--r-- | web/app/index.jsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/web/app/index.jsx b/web/app/index.jsx new file mode 100644 index 0000000..a357551 --- /dev/null +++ b/web/app/index.jsx @@ -0,0 +1,7 @@ +import { createRoot } from 'react-dom/client'; +import React from 'react' +import App from './App' + +const contentRoot = document.getElementById('app'); +const contentReactRoot = createRoot(contentRoot); +contentReactRoot.render(<App />);
\ No newline at end of file |