Skip to content

Commit

Permalink
ci : 스토리북 cicd 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
HelloWook committed Nov 15, 2024
1 parent f7a3ef1 commit 23013bb
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/App.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import type { Meta, StoryObj } from "@storybook/react";

import App from "./App";

const meta: Meta<typeof App> = {
component: App,
title: "App",
tags: ["autodocs"],
argTypes: {},
};
export default meta;

type Story = StoryObj<typeof App>;

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

0 comments on commit 23013bb

Please sign in to comment.