Add: main.tsx

This commit is contained in:
Aroy-Art 2025-02-19 22:29:35 +01:00
parent f482dd5cf8
commit 27f10cdb64
Signed by: Aroy
GPG key ID: 583642324A1D2070
3 changed files with 11 additions and 0 deletions

0
frontend/src/index.css Normal file
View file

10
frontend/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>,
)

1
frontend/src/vite-env.d.ts vendored Normal file
View file

@ -0,0 +1 @@
/// <reference types="vite/client" />