From 100fb6f8312d7518e61ffac6f4d346095ed7cabc Mon Sep 17 00:00:00 2001 From: winkerVSbecks Date: Mon, 12 Sep 2022 22:19:29 -0400 Subject: [PATCH] add a sub section on how to use stories --- docs/get-started/browse-stories.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/get-started/browse-stories.md b/docs/get-started/browse-stories.md index ff5f725c81f..abb84a6cb04 100644 --- a/docs/get-started/browse-stories.md +++ b/docs/get-started/browse-stories.md @@ -73,3 +73,19 @@ Addons are plugins that extend Storybook's core functionality. You can find them Storybook is extensible. Our rich ecosystem of addons helps you test, document, and optimize your stories. You can also create an addon to satisfy your workflow requirements. Read more in the [addons section](../addons/introduction.md). In the next chapter, we'll get your components rendering in Storybook so you can use it to supercharge component development. + +## Use stories to build UIs + +When building apps, one of the biggest challenges is to figure out if a piece of UI already exists in your codebase and how to use it for the new feature you're building. + +Storybook catalogues all your components and their use cases. Therefore, you can quickly browse it to find what you're looking for. + +Here's what the workflow looks like: + +- 🗃 Use the sidebar to find a suitable component +- 👀 Review its stories to pick a variant that suits your needs +- 📝 Copy/paste the story definition into your app code and wire it up to data + +You can access the story definition from the stories file or make it available in your published Storybook using the [Storysource addon](https://storybook.js.org/addons/@storybook/addon-storysource/) or the [Docs addon](../writing-docs/doc-block-source). + +![Docs blocks with source](../writing-docs/docblock-source.png)