https://github.com/napagroup/grape-ui-react
grape-ui: the responsive react UI framework built upon styled components, styled system, and open source components
https://github.com/napagroup/grape-ui-react
grape-ui react
Last synced: 6 months ago
JSON representation
grape-ui: the responsive react UI framework built upon styled components, styled system, and open source components
- Host: GitHub
- URL: https://github.com/napagroup/grape-ui-react
- Owner: napagroup
- License: mit
- Created: 2020-04-09T15:55:51.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-10T22:02:33.000Z (almost 3 years ago)
- Last Synced: 2024-05-16T17:20:59.059Z (about 2 years ago)
- Topics: grape-ui, react
- Language: JavaScript
- Homepage: https://www.grapeui.com
- Size: 12.2 MB
- Stars: 39
- Watchers: 5
- Forks: 2
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

## Getting Started
These instructions will allow you to use the extensible grape-ui component library in any React project.
### Prerequisites
* [ReactJS](https://reactjs.org/)
* [Styled Components](https://www.styled-components.com/)
### Installing
Add grape-ui as a dependency to your project
```bash
npm install grape-ui-react
```
### Usage
Import grape-ui components into your project
```jsx static
import { Paragraph } from 'grape-ui-react';
```
Use the components in your app
```jsx static
render() {
return (
...
grape-ui is Groovy
...
);
};
```
And that's it!