16 lines
324 B
TypeScript
16 lines
324 B
TypeScript
// ===========================
|
|
// ©AngelaMos | 2026
|
|
// main.tsx
|
|
// ===========================
|
|
|
|
import { StrictMode } from 'react'
|
|
import { createRoot } from 'react-dom/client'
|
|
import App from './App'
|
|
import './styles.scss'
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>
|
|
)
|