0.2.0 • Published 7 years ago

react-pur v0.2.0

Weekly downloads
5
License
GPL 3.0
Repository
github
Last release
7 years ago

Pur

React UI component library (using styled-components).

Get Started

  • npm install react-pur or yarn add react-pur (there is no 'e', be careful)
  • Wrap your application with Provider:
import React from 'react';
import { Heading, Provider } from 'react-pur';

class Application extends React.Component {
  render() {
    return (
      <Provider>
        <Heading>Hello Pur</Heading>
      </Provider>
    );
  }
}