Files
timelapse-calc/src/main.jsx
Tien Ngo 97e902ec50
Some checks failed
Deploy to Private Server / deploy (push) Failing after 2s
first commit
2025-12-24 11:49:29 +07:00

11 lines
229 B
JavaScript

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