inventario/frontend/src/main.tsx
StefanoPutelli 04267b3886 init
2025-06-28 16:01:31 +02:00

5 lines
158 B
TypeScript

import { createRoot } from 'react-dom/client'
import App from './App.tsx'
import './index.css'
createRoot(document.getElementById("root")!).render(<App />);