cal.pub0.org/apps/storybook/stories/Select.stories.tsx

11 lines
260 B
TypeScript

import { ComponentMeta } from "@storybook/react";
import { Select } from "@calcom/ui/v2";
export default {
title: "Form/Select",
component: Select,
} as ComponentMeta<typeof Select>;
export const Single = () => <Select options={[{ value: "text" }]} />;