import React from "react"; import Button from "../Button/Button"; import Flex from "../Box/Flex"; import Dropdown from "./Dropdown"; export default { title: "Components/Dropdown", component: Dropdown, argTypes: {}, }; export const Default: React.FC = () => { return (
Hover}> {[...Array(30)].map(() => (
Content
))}
); }; export const Top: React.FC = () => { return ( Top right}> {[...Array(20)].map(() => (
Content
))}
Top}> {[...Array(20)].map(() => (
Content
))}
); };