summaryrefslogblamecommitdiff
path: root/web/app/index.jsx
blob: a3575514a2def2441e76ef7da63dd8bed5917ae5 (plain) (tree)
1
2
3
4
5
6
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 />);