Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 340 Bytes
7b6b120 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
import { startReactDsfr } from "@codegouvfr/react-dsfr/spa";
startReactDsfr({ defaultColorScheme: "system" });
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)
|