Redesigned UI

Fixed SQL query issues with server
This commit is contained in:
2025-09-06 14:27:54 +02:00
parent e4aafb998a
commit cd020e3eb8
12 changed files with 2154 additions and 1386 deletions

View File

@@ -1,10 +1,15 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { ChakraProvider, createSystem, defaultConfig } from "@chakra-ui/react"
import './index.css'
import App from './App.jsx'
const system = createSystem(defaultConfig)
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
<ChakraProvider value={system}>
<App />
</ChakraProvider>
</StrictMode>,
)