ed
This commit is contained in:
parent
510e3ffcf2
commit
f43cf424cf
305 changed files with 34683 additions and 0 deletions
14
resources/[carscripts]/community_bridge/web/src/main.jsx
Normal file
14
resources/[carscripts]/community_bridge/web/src/main.jsx
Normal file
|
@ -0,0 +1,14 @@
|
|||
import React from 'react'
|
||||
import ReactDOM from 'react-dom/client'
|
||||
import Dialogue from './dialogue.jsx'
|
||||
import './index.css'
|
||||
|
||||
const root = document.getElementById('root')
|
||||
ReactDOM.createRoot(root).render(
|
||||
<React.StrictMode>
|
||||
<Dialogue />
|
||||
</React.StrictMode>,
|
||||
)
|
||||
|
||||
// add hidden to root element
|
||||
root.classList.add('hidden')
|
Loading…
Add table
Add a link
Reference in a new issue