Skip to content

Storybook

Storybook is a tool for development UI components which simplifies the execution of each component with different Inputs.

To run storybook:

Bash
yarn nx run suite:storybook

For Suite Framework

All libraries inside suite/ automatically include Storybook, you only need to create .stories.ts files and they will get discovered.

For Apps

We need to add a new Storybook configuration for the app, which can be done using:

Bash
yarn nx g @nrwl/angular:storybook-configuration <project name>

Then you can run Storybook using

Bash
yarn nx run <project name>:storybook