wails project init

This commit is contained in:
2024-12-13 20:54:24 -06:00
parent 34c1319f44
commit 17c35e59c5
48 changed files with 4366 additions and 2 deletions

14
frontend/src/main.tsx Executable file
View 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>
)