Skip to content

Supercharge Your UI Development with Storybook

AppLaunchKit goes beyond providing just the basic pre-configured development tools to enhance your development experience. It equips you with Storybook, a powerful tool that simplifies UI component development and testing.

Launching Storybook

  • Storybook (Expo):

Following command starts storybook for expo app components in ios.

Terminal window
cd apps/expo
npm run storybook:ios

Following command starts storybook for expo app components in android.

Terminal window
cd apps/expo
npm run storybook:android

Following command starts storybook for expo app components in web.

Terminal window
cd apps/expo
npm run storybook:web
  • Storybook (Next.js):

Following command starts storybook for next app components.

Terminal window
cd apps/next
npm run storybook