rum-goggles/v1/frontend/src/main.jsx

15 lines
292 B
React
Raw Normal View History

import React from 'react';
import { createRoot } from 'react-dom/client';
import './style.css';
import App from './App';
2023-12-13 21:07:40 +00:00
const container = document.getElementById('root');
2023-12-13 21:07:40 +00:00
const root = createRoot(container);
2023-12-13 21:07:40 +00:00
root.render(
// <React.StrictMode>
<App />
// </React.StrictMode>
);