schedule/src/main.jsx

11 lines
242 B
React
Raw Normal View History

2024-09-18 19:56:00 +03:00
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.jsx';
import './index.css';
2024-09-18 19:41:41 +03:00
createRoot(document.getElementById('root')).render(
2024-09-18 21:24:35 +03:00
<StrictMode>
<App />
</StrictMode>,
2024-09-18 19:56:00 +03:00
);