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
{{ message }}
This repository was archived by the owner on Jan 26, 2019. It is now read-only.
-[Developing UI Components with React Storybook](#developing-ui-components-with-react-storybook)
45
+
-[Developing Components in Isolation](#developing-components-in-isolation)
46
46
-[Deployment](#deployment)
47
47
-[Building for Relative Paths](#building-for-relative-paths)
48
48
-[GitHub Pages](#github-pages)
@@ -879,7 +879,7 @@ Snapshot testing is a new feature of Jest that automatically generates text snap
879
879
880
880
This feature is experimental and still [has major usage issues](https://github.com/facebookincubator/create-react-app/issues/372) so we only encourage you to use it if you like experimental technology. We intend to gradually improve it over time and eventually offer it as the default solution for testing React components, but this will take time. [Read more about snapshot testing.](http://facebook.github.io/jest/blog/2016/07/27/jest-14.html)
881
881
882
-
## Developing UI Components with React Storybook
882
+
## Developing Components in Isolation
883
883
884
884
Usually, in an app, you have a lot of UI components, and each of them has many different states.
885
885
For an example, a simple button component could have following states:
@@ -890,7 +890,7 @@ For an example, a simple button component could have following states:
890
890
891
891
Usually, it’s hard to see these states without running a sample app or some examples.
892
892
893
-
That’s where you could get some help from [React Storybook](https://github.com/kadirahq/react-storybook). **It is a thirdparty tool that lets you develop components and see all their states in isolation from your app**.
893
+
Create React App doesn't include any tools for this by default, but you can easily add [React Storybook](https://github.com/kadirahq/react-storybook) to your project. **It is a third-party tool that lets you develop components and see all their states in isolation from your app**.
0 commit comments