grape-ui-react
v0.13.3
Published
A React component library built with styled-components.
Downloads
16
Readme
Getting Started
These instructions will allow you to use the extensible grape-ui component library in any React project.
Prerequisites
Installing
Add grape-ui as a dependency to your project
npm install grape-ui-reactUsage
Import grape-ui components into your project
import { Paragraph } from 'grape-ui-react';Use the components in your app
render() {
return (
<div className="App">
...
<Paragraph>grape-ui is Groovy</Paragraph>
...
</div>
);
};And that's it!
