15 lines
287 B
React
15 lines
287 B
React
import { StrictMode } from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
import './index.css';
|
|
import App from './App.jsx';
|
|
|
|
/**
|
|
* 应用入口
|
|
* 渲染 React 应用到 DOM
|
|
*/
|
|
createRoot(document.getElementById('root')).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>
|
|
);
|