Files
DataClaw/dataclaw-ui/src/main.tsx
T

15 lines
351 B
TypeScript
Raw Normal View History

2026-03-14 15:52:27 +08:00
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App'
import { ErrorBoundary } from './components/ErrorBoundary'
2026-03-21 21:26:57 +08:00
import './i18n/config'
2026-03-14 15:52:27 +08:00
createRoot(document.getElementById('root')!).render(
<StrictMode>
<ErrorBoundary>
<App />
</ErrorBoundary>
</StrictMode>,
)