update
This commit is contained in:
11
src/client/admin/index.tsx
Normal file
11
src/client/admin/index.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { createRoot } from 'react-dom/client'
|
||||
import Web_app from './web_app'
|
||||
|
||||
|
||||
const rootElement = document.getElementById('root')
|
||||
if (rootElement) {
|
||||
const root = createRoot(rootElement)
|
||||
root.render(
|
||||
<Web_app />
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user