An isolated development space with integrated fuzz testing for your components. See them individually, explore them in different states and quickly and confidently develop them.
When opening the URL of a component that doesn't exist (e.g. localhost:8080/styleguide/#/some/blabla/not/a/component) then you're only greeted with a white page. We should add a 404 page by adding this route to client/client.js after all component routes:
<Route path="*" component={FourOhFour} />
Where FourOhFour refers to a component in the client.
When opening the URL of a component that doesn't exist (e.g.
localhost:8080/styleguide/#/some/blabla/not/a/component
) then you're only greeted with a white page. We should add a 404 page by adding this route toclient/client.js
after all component routes:Where
FourOhFour
refers to a component in the client.