This commit is contained in:
polwex 2026-03-24 16:12:30 +07:00
commit d42e47b15b
31 changed files with 3045 additions and 0 deletions

10
src/main.tsx Normal file
View file

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