import { Button } from "@/components/ui/button" import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from "@/components/ui/card" import { Input } from "@/components/ui/input" import { Label } from "@/components/ui/label" import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/components/ui/select" import { useState } from "react" export function Card2() { const [name, setName] = useState("") const [framework, setFramework] = useState("") const handleSubmit = (e) => { e.preventDefault() alert( `💀 You chose to "${framework}" for project "${name}". Absolute legend.` ) } return ( Create cursed project Pick your favorite nasty action
setName(e.target.value)} />
) }