feat: initial frontend commit

This commit is contained in:
nihonium 2025-10-09 14:40:21 +03:00
parent 6612ed6df6
commit e1cdb7af79
Signed by untrusted user: nihonium
GPG key ID: 0251623741027CFC
18 changed files with 4146 additions and 0 deletions

View file

@ -0,0 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)