// src/index.js ou src/main.jsx import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; import './index.css'; // ou 'styles.css' ReactDOM.createRoot(document.getElementById('root')).render( );