main_20250812150610.tsx 314 B

1234567891011121314
  1. // main.tsx 或 index.tsx
  2. import React from 'react';
  3. import { createRoot } from 'react-dom/client';
  4. import App from './App';
  5. const container = document.getElementById('root');
  6. if (container) {
  7. const root = createRoot(container);
  8. root.render(
  9. <React.StrictMode>
  10. <App />
  11. </React.StrictMode>
  12. );
  13. }