chore: initial commit

This commit is contained in:
Sajad Mirjalili
2025-07-01 15:12:33 +03:30
commit e2d37ac7b2
17 changed files with 3975 additions and 0 deletions

10
src/main.tsx Normal file
View File

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