"use client" import { useState } from "react" import { ComponentContainer } from "@/components/ui/component-container" import { SectionHeading } from "@/components/ui/section-heading" import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select" export function SelectSection() { const [value, setValue] = useState("") const [value2, setValue2] = useState("apple") return (
Apple Banana Blueberry Grapes Pineapple ) }`} >
Apple Banana Blueberry Grapes Pineapple ) }`} >

Usage

            {`import {
  Select,
  SelectContent,
  SelectItem,
  SelectTrigger,
  SelectValue,
} from "@/components/ui/select"`}
          
) }