🎉 initial commit

This commit is contained in:
2026-06-08 17:15:43 +10:00
commit bfece01c67
33 changed files with 9920 additions and 0 deletions

10
src/renderer/main.tsx Normal file
View File

@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App'
import './styles/app.css'
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
<React.StrictMode>
<App />
</React.StrictMode>
)