1 2 3 4 5 6 7 8 9 10
import React from 'react'; import { createRoot } from 'react-dom/client'; import { Main } from './main'; import './index.css' const container = document.querySelector('#root'); const root = createRoot(container); root.render(<Main />);