mirror of
https://github.com/Funkoala14/CreatorCenter_OOIN.git
synced 2025-06-09 07:20:56 +08:00
11 lines
247 B
React
11 lines
247 B
React
|
import React from 'react';
|
||
|
import ReactDOM from 'react-dom/client';
|
||
|
import App from './App.jsx';
|
||
|
import './index.css';
|
||
|
|
||
|
ReactDOM.createRoot(document.getElementById('root')).render(
|
||
|
<React.StrictMode>
|
||
|
<App />
|
||
|
</React.StrictMode>
|
||
|
);
|