1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18import React from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; import App from './App'; import { Theme } from '@radix-ui/themes'; const root = ReactDOM.createRoot( document.getElementById('root') as HTMLElement ); root.render( <React.StrictMode> <Theme> <App /> </Theme> </React.StrictMode> );