Initial Commit
This commit is contained in:
parent
e709f96b3b
commit
e63ff72936
13 changed files with 3019 additions and 0 deletions
10
byte-camp-battle-snake-web/src/main.jsx
Normal file
10
byte-camp-battle-snake-web/src/main.jsx
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { StrictMode } from 'react'
|
||||
import { createRoot } from 'react-dom/client'
|
||||
import './index.css'
|
||||
import App from './App.jsx'
|
||||
|
||||
createRoot(document.getElementById('root')).render(
|
||||
<StrictMode>
|
||||
<App />
|
||||
</StrictMode>,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue