import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '../components/ui/card'; import { Button } from '../components/ui/button'; import { Label } from '../components/ui/label'; import { Input } from '../components/ui/input'; import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, } from "@/components/ui/alert-dialog" import { useNavigate } from 'react-router'; function App() { const navigate = useNavigate() return (
Crear nuevo proyecto Presenta tus proyectos 3D y compártelos con tu profesor
¿Deseas cancelar el modelo? Esta acción es irreversible. Se borrará todo el progreso realizado y no habrá respaldo para recuperarlo. Cancel navigate('/login')}>Confirmar
) } export default App