mirror of
https://github.com/Xevion/vastly.git
synced 2025-12-10 12:09:06 -06:00
wails project init
This commit is contained in:
14
frontend/src/main.tsx
Executable file
14
frontend/src/main.tsx
Executable file
@@ -0,0 +1,14 @@
|
||||
import React from 'react'
|
||||
import {createRoot} from 'react-dom/client'
|
||||
import './style.css'
|
||||
import App from './App'
|
||||
|
||||
const container = document.getElementById('root')
|
||||
|
||||
const root = createRoot(container!)
|
||||
|
||||
root.render(
|
||||
<React.StrictMode>
|
||||
<App/>
|
||||
</React.StrictMode>
|
||||
)
|
||||
Reference in New Issue
Block a user