feat(tools): create ui-components package and setup Storybook (#41920)

* feat(client): basic Storybook setup

* Revert "feat(client): basic Storybook setup"

This reverts commit f55e249326.

* feat(tools): create ui-components package and setup Storybook

* Add ui-components to lerna.json
This commit is contained in:
Huyen Nguyen
2021-05-11 02:07:01 +07:00
committed by GitHub
parent 83943de719
commit 3efe3fa73f
21 changed files with 14074 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
module.exports = {
stories: ['../src/**/*.stories.mdx', '../src/**/*.stories.js'],
addons: [
'@storybook/addon-links',
'@storybook/addon-essentials',
'@storybook/addon-postcss'
]
};