umbennen von frontend zu frontend

This commit is contained in:
Nirodan
2025-06-14 14:01:20 +02:00
parent 6530638141
commit 5424351cea
22 changed files with 50 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)