import { Button } from '../app/components/Button';
import * as DropdownMenu from '../app/components/DropdownMenu';
import { ChevronDown } from '../app/icons/ChevronDown';
import type { Meta } from '@storybook/react';
type SimpleDropdownProps = {
items: { name: string }[];
};
export function SimpleDropdown({ items }: SimpleDropdownProps) {
return (
}>
Open
{items.map(({ name }, index) => {
return (