(1) 각각의 컴포넌트를 따로 볼수 있게 해줘서 한번에 하나의 컴포넌트에서 작업할 수 있다.
(2) 복잡한 개발 스택을 시작하거나, 특정 데이터를 데이터베이스로 강제 이동하거나할때, 애플리케이션을 탐색할 필요없이 전체 UI를 보고 개발이 가능하다.
# Clone the template
npx degit chromaui/intro-storybook-react-template taskbox
cd taskbox
# Install dependencies
yarn
Storybook 실행방법
npm run storybook
//or
yarn storybook
그 외 사용법에 관해서 설명한 블로그 : https://webruden.tistory.com/265
import React from "react";
import { Button } from "@storybook/react/demo";
export default {
title: "Button",
component: Button
};
export const Primary = () => <Button>Hello Button</Button>;
export const Secondary = () => <Button>Bye Button</Button>;
export const third = () => <Button>Bye Button</Button>;
Storybook 에서 지원하는 주요기능