"use client" import { useState } from "react" import { ComponentContainer } from "@/components/ui/component-container" import { SectionHeading } from "@/components/ui/section-heading" import { Combobox } from "@/components/ui/combobox" const frameworks = [ { value: "next.js", label: "Next.js" }, { value: "sveltekit", label: "SvelteKit" }, { value: "nuxt", label: "Nuxt.js" }, { value: "remix", label: "Remix" }, { value: "astro", label: "Astro" }, { value: "angular", label: "Angular" }, { value: "vue", label: "Vue.js" }, { value: "react", label: "React" }, { value: "solid", label: "SolidJS" }, { value: "svelte", label: "Svelte" }, ] export function ComboboxSection() { const [value, setValue] = useState("") return (
) }`} >
) }