Fase 2: Inicialización Frontend Admin Panel (Vite + React + TS), Instalación de Dependencias (Tailwind, Zustand, Router)

This commit is contained in:
2025-12-17 13:11:30 -03:00
parent eda016f93f
commit 1c7e8d5cdb
18 changed files with 4028 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>,
)