import type { Meta, StoryObj } from "@storybook/react-native-web-vite"; import { Content } from "@jobber/components-native"; import { ContentHorizontal, ContentVertical } from "./docs"; const meta = { title: "Components/Layouts and Structure/Content", component: Content, args: { children: null, }, parameters: { backgrounds: { default: "surface background", }, viewport: { defaultViewport: "mobile1" }, }, } satisfies Meta; export default meta; type Story = StoryObj; export const Vertical: Story = { render: ContentVertical, args: { direction: "vertical", }, }; export const Horizontal: Story = { render: ContentHorizontal, args: { direction: "horizontal", }, };