5 лаба

This commit is contained in:
2025-05-24 01:08:07 +04:00
parent f47194f1fc
commit 6988cf7ef6
49 changed files with 6632 additions and 5767 deletions

13
Lab/src/main.jsx Normal file
View File

@@ -0,0 +1,13 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { BrowserRouter } from 'react-router-dom'
import '../style.css'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<BrowserRouter>
<App />
</BrowserRouter>
</StrictMode>,
)