Files
suanming/src/main.tsx

12 lines
299 B
TypeScript

import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { ErrorBoundary } from './components/ErrorBoundary.tsx'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<ErrorBoundary>
<App />
</ErrorBoundary>,
)