web / frontend /src /main.tsx
Chandima Prabhath
Track bun.lockb with Git LFS
cc2caf9
raw
history blame
162 Bytes
import { createRoot } from 'react-dom/client';
import App from './App.tsx';
import './index.css';
createRoot(document.getElementById("root")!).render(<App />);