React에서 Storybook 설치 및 실행하는 방법
# Create our application: npx create-react-app taskbox cd taskbox # Add Storybook: npx -p @storybook/cli sb init
# Start the component explorer on port 6006: yarn storybook # Run the frontend app proper on port 3000: yarn start