prototype

This commit is contained in:
2026-05-05 18:41:51 +03:00
parent d4c42061ba
commit 5ddc23210b
23 changed files with 4920 additions and 1 deletions

10
src/main.tsx Normal file
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>,
)