crmfrontend/src/main.jsx
vickytechkey 308a5ab9f5
All checks were successful
Production CI/CD Pipeline / build-and-test (push) Successful in 14s
Production CI/CD Pipeline / deploy-prod (push) Successful in 6s
Initial commit
2026-08-15 18:36:20 +05:30

10 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>,
)