Skip to content

Commit

Permalink
refactor: review
Browse files Browse the repository at this point in the history
  • Loading branch information
ojj1123 committed May 6, 2024
1 parent b0636e0 commit 6558d27
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 41 deletions.
5 changes: 1 addition & 4 deletions stories/atoms/badges/Badge.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ import { Badge } from "../../../components/atoms/badges/Badges";
const meta = {
title: "Atoms/Badge/Badge",
component: Badge,
parameters: {},
tags: ["autodocs"],
argTypes: {},

args: {},
} satisfies Meta<typeof Badge>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Primary: Story = {
Expand Down
5 changes: 1 addition & 4 deletions stories/atoms/badges/OutlineBadge.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ import OutlineBadge from "../../../components/atoms/badges/OutlineBadge";
const meta = {
title: "Atoms/Badge/OutlineBadge",
component: OutlineBadge,
parameters: {},
tags: ["autodocs"],
argTypes: {},

args: {},
} satisfies Meta<typeof OutlineBadge>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Primary: Story = {
Expand Down
5 changes: 1 addition & 4 deletions stories/atoms/blocks/IconButtonColBlock.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,11 @@ import IconButtonColBlock from "../../../components/atoms/blocks/IconButtonColBl
const meta = {
title: "Atoms/Blocks/IconButtonColBlock",
component: IconButtonColBlock,
parameters: {},
tags: ["autodocs"],
argTypes: {},

args: {},
} satisfies Meta<typeof IconButtonColBlock>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Primary: Story = {
Expand Down
5 changes: 1 addition & 4 deletions stories/atoms/buttons/ArrowBackButton.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ import { ArrowBackButtonUI } from "../../../components/atoms/buttons/ArrowBackBu
const meta = {
title: "ATOMS/Button/ArrowBackButton",
component: ArrowBackButtonUI,
parameters: {},
tags: ["autodocs"],
argTypes: {},

args: {},
} satisfies Meta<typeof ArrowBackButtonUI>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Primary: Story = {
Expand Down
5 changes: 1 addition & 4 deletions stories/atoms/buttons/ArrowTextButton.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ import ArrowTextButton from "../../../components/atoms/buttons/ArrowTextButton";
const meta = {
title: "ATOMS/Button/ArrowTextButton",
component: ArrowTextButton,
parameters: {},
tags: ["autodocs"],
argTypes: {},

args: {},
} satisfies Meta<typeof ArrowTextButton>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Primary: Story = {
Expand Down
2 changes: 1 addition & 1 deletion stories/atoms/buttons/BasicButton.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { BasicButton } from "../../../components/atoms/buttons/BasicButton";
const meta = {
title: "ATOMS/Button/BasicButton",
component: BasicButton,
parameters: {},
tags: ["autodocs"],
argTypes: {
backgroundColor: { control: "color" },
Expand All @@ -16,6 +15,7 @@ const meta = {
} satisfies Meta<typeof BasicButton>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Primary: Story = {
Expand Down
5 changes: 1 addition & 4 deletions stories/atoms/buttons/HighlightedTextButton.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ import HighlightedTextButton from "../../../components/atoms/buttons/Highlighted
const meta = {
title: "ATOMS/Button/HighlightedTextButton",
component: HighlightedTextButton,
parameters: {},
tags: ["autodocs"],
argTypes: {},

args: {},
} satisfies Meta<typeof HighlightedTextButton>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Primary: Story = {
Expand Down
5 changes: 1 addition & 4 deletions stories/atoms/buttons/ShadowBlockButton.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ import ShadowBlockButton from "../../../components/atoms/buttons/ShadowBlockButt
const meta = {
title: "ATOMS/Button/ShadowBlockButton",
component: ShadowBlockButton,
parameters: {},
tags: ["autodocs"],
argTypes: {},

args: {},
} satisfies Meta<typeof ShadowBlockButton>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Primary: Story = {
Expand Down
5 changes: 1 addition & 4 deletions stories/atoms/buttons/ShadowCircleButton.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ import ShadowCircleButton from "../../../components/atoms/buttons/ShadowCircleBu
const meta = {
title: "ATOMS/Button/ShadowCircleButton",
component: ShadowCircleButton,
parameters: {},
tags: ["autodocs"],
argTypes: {},

args: {},
} satisfies Meta<typeof ShadowCircleButton>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Primary: Story = {
Expand Down
5 changes: 1 addition & 4 deletions stories/atoms/loaders/MainLoading.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ import { MainLoading } from "../../../components/atoms/loaders/MainLoading";
const meta = {
title: "Atoms/Loaders/MainLoading",
component: MainLoading,
parameters: {},
tags: ["autodocs"],
argTypes: {},

args: {},
} satisfies Meta<typeof MainLoading>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Primary: Story = {
Expand Down
5 changes: 1 addition & 4 deletions stories/atoms/profile/ProfileIcon.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ import ProfileIcon from "../../../components/atoms/Profile/ProfileIcon";
const meta = {
title: "Atoms/Profile/ProfileIcon",
component: ProfileIcon,
parameters: {},
tags: ["autodocs"],
argTypes: {},

args: {},
} satisfies Meta<typeof ProfileIcon>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Primary: Story = {
Expand Down
1 change: 1 addition & 0 deletions stories/atoms/skeletons/Skeleton.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const meta = {
} satisfies Meta<typeof Skeleton>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Primary: Story = {
Expand Down

0 comments on commit 6558d27

Please sign in to comment.