You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to make stories to be classified in categories
* API
* REST API
* App
* new start
* logged-in user
* Components
* BannerButton
* BannerView
* ...
* Scenes
* AdDialog
* ....
using the following code
// original story: accept a string for the story namestoriesOf('[Scene] AdDialog',module)// with category: accept an array for the category and story namesstoriesOf(['Scene','AdDialog'],module)
The text was updated successfully, but these errors were encountered:
I have categories for different purposes:
Component
: display a UI element for reusabilityScene
: display a whole UI page for a sceneApp
: display the whole app with full functionalities just likereact-native start
My current stories are like this:
I want to make stories to be classified in categories
using the following code
The text was updated successfully, but these errors were encountered: