Skip to content

Commit

Permalink
Created a new branch to move the combobox to the correct structure br…
Browse files Browse the repository at this point in the history
…anch. (on development)
  • Loading branch information
ser888gio committed Nov 21, 2024
1 parent e85f301 commit 739fac9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions apps/design-system/stories/checkbox.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import type { Meta, StoryObj } from "@storybook/react";
import { Checkbox } from "../../../packages/design-system/src/ui/input/checkbox";

const meta: Meta<typeof Checkbox> = {
title: "Components/Checkbox",
component: Checkbox,
argTypes: {},
tags: ["autodocs"],
};

type CheckboxStory = StoryObj<typeof meta>;

export const Default: CheckboxStory = {
args: {},
};

export default meta;

0 comments on commit 739fac9

Please sign in to comment.