feat: use vite and ts

This commit is contained in:
Ibrahima G. Coulibaly
2024-06-19 18:08:19 +01:00
parent f68f25122d
commit 2cb7ce23db
26 changed files with 11820 additions and 0 deletions

8
src/index.tsx Normal file
View File

@@ -0,0 +1,8 @@
import { createRoot } from 'react-dom/client'
import 'tailwindcss/tailwind.css'
import App from 'components/App'
const container = document.getElementById('root') as HTMLDivElement
const root = createRoot(container)
root.render(<App />)