This commit is contained in:
hamid zarghami
2025-02-26 14:57:11 +03:30
parent e3466bc951
commit 7a4e8ecaa5
29 changed files with 350 additions and 39 deletions
+3 -4
View File
@@ -1,11 +1,10 @@
import { StrictMode } from 'react'
// import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './assets/fonts/irancell/style.css'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
<App />
,
)