react-shipyard
v0.1.31
Published
React Shipyard is a React Component library with accessible, semantically correct React components.
Downloads
52
Readme
React Shipyard
Shipyard is a collection of ready to use, accessible, semantically correct React components.
All components in this collection were designed with the following in mind. They must be:
- Accessible and usable in all browsers and on all devices, no matter the controls
- Semantically correct, respecting web standards
- Styled using the BEM naming convention
- Easily customizable with own props and styling
- Fully documented, with styling guidelines
Installation
Install from NPM:
npm install --save react-shipyard
Install node-sass
in order to use the SASS variables:
npm install --save-dev node-sass
Usage
Import it into your code:
import { Dialog } from 'react-shipyard';
const Example = () => (
<Dialog type="success">
<p>Installation was successful!</p>
</Dialog>
);
Documentation
See http://christiaanhemerik.com/react-shipyard.