Boilerplate Design System using JSS and ReactJS
This project primarily uses StorybookJS for development.
git clone
this projectnpm install
npm run storybook
ornpm run dev
Make a new folder in the components folder, make sure the folder name is unspaced and Pascal Case (ExampleComponentName). Create a JS file with the same folder name (or appropriate variation).
Requirements
- Documented PropTypes and default props.
- Storybook examples are labeled with a
.story.js
filename.
The goal is to keep the package as lightweight and minimal as possible, so there's not much to it. If you look at the package.json
, you'll see a few dev dependencies like Babel, React, and Storybook.
In terms of actual dependencies, we only have React-JSS, since it's used in the actual components. React and react-dom are peer-deps (since the project's using this will be react-based).
- /components/
- /components/ComponentName/
- /components/ComponentName/ComponentName.js
- /components/ComponentName/index.js - contains exports of all components in folder
- .babelrc - env and react Babel presets.
- More components
- Integrate Jest + Storybook for testing
- Install Lerna to manage sub-packages, allowing users to install specific components (maybe separate branch?)