9 lines
211 B
React
9 lines
211 B
React
import { createRoot } from 'react-dom/client';
|
|
import App from './App.jsx';
|
|
import '../../css/moonwell.css';
|
|
|
|
const mount = document.getElementById('root');
|
|
if (mount) {
|
|
createRoot(mount).render(<App />);
|
|
}
|