Fix new Frontend 2

This commit is contained in:
Urtzi Alfaro
2025-08-03 19:49:57 +02:00
parent 11ab73ae97
commit 5b16545a0d
7 changed files with 782 additions and 274 deletions

View File

@@ -1,10 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.tsx' 👈 Imports from ./App.tsx
import App from './App.tsx'
import './index.css'
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App /> 👈 Renders the App component
<App />
</React.StrictMode>,
)