Every adventurer needs a set of tools to take along the way! Backpack is the Lonely Planet toolset that we use to build front end apps.
npm install backpack-ui --save
import Button from "backpack-ui/dist/components/button";
npm run storybook
Open http://localhost:6006/ in your favorite web browser.
Then import your component(s) into stories/index.jsx and render them like so:
storiesOf("Some component name", module)
.add("Default", () => (
<ComponentName />
))
.add("Some variation", () => (
<ComponentName prop="value" />
));
Please read the guidelines for contributing before making a pull request.