API Dashboard added

This commit is contained in:
Sidharth Prabhu
2026-07-24 10:27:30 +05:30
parent 2c42aeb4ee
commit 93e375dc7d
27 changed files with 6448 additions and 0 deletions

View File

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