import MenuBar from "../app/components/MenuBar"; import MenuBarItem from "../app/components/MenuBarItem"; export default { title: "Components/MenuBar", component: MenuBar, parameters: { layout: "centered", }, tags: ["autodocs"], argTypes: { size: { control: { type: "select" }, options: ["xsmall", "default", "medium", "large"], }, }, args: { size: "default", }, }; export const Default = { render: (args) => ( Home About Contact ), }; export const Small = { render: (args) => ( Home About Contact ), }; export const Large = { render: (args) => ( Home About Contact ), }; export const WithDisabledItem = { render: (args) => ( Home About Contact ), };