well-rounded-ui
Version:
Well Rounded UI Inputs to beautify your web projects !
23 lines (18 loc) • 438 B
text/typescript
import type { Meta, StoryObj } from "@storybook/react";
import { Col } from "../../components/layout";
const meta = {
title: "Layout/Col/Col",
component: Col,
parameters: {
layout: "centered"
},
tags: ["autodocs"],
argTypes: {}
} satisfies Meta<typeof Col>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Default: Story = {
args: {
children: "Any col content"
}
};