CreatorCenter_OOIN/src/main.jsx

12 lines
283 B
React
Raw Normal View History

2025-05-09 07:03:19 +08:00
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import '../src/styles/custom-theme.scss';
2025-05-08 10:39:32 +08:00
import './index.css';
2025-05-09 07:03:19 +08:00
import App from './App.jsx';
2025-05-08 10:39:32 +08:00
2025-05-09 07:03:19 +08:00
createRoot(document.getElementById('root')).render(
<StrictMode>
2025-05-08 10:39:32 +08:00
<App />
2025-05-09 07:03:19 +08:00
</StrictMode>
2025-05-08 10:39:32 +08:00
);