hi-landing/src/main.tsx
2025-11-14 07:13:11 -08:00

11 lines
226 B
TypeScript

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