"use client" import { useRef } from "react" import { Button, type Key, Label, ListBox, ListBoxItem, Popover, Select as ReactAriaSelect, SelectValue, } from "react-aria-components" import SelectChevron from "../SelectChevron" import styles from "./select.module.css" import type { SelectProps } from "./select" export default function Select({ "aria-label": ariaLabel, items, label, name, onSelect, placeholder, value, defaultSelectedKey, }: SelectProps) { const divRef = useRef(null) function handleOnSelect(key: Key) { onSelect(key) } return (
{items.map((item) => ( {item.label} ))}
) }