0.0.8 • Published 6 years ago

kemprus v0.0.8

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

kemprus

kemprus is a library of highly-composable component influenced by rebass with extras composable component. kemprus ui based on stripe.com

npm i kemprus

Getting Started

import React from 'react'
import { Button } from 'kemprus'

const App = props => (
  <Provider>
    <Button children="Hello" />
  </Provider>
)

or for advanced feature:

import React from 'react'
import { SelectFilter } from 'kemprus/advanced'

const App = props => (
  <Provider>
    <SelectFilter 
      onChange={() => console.log('changed')}
      placeholder="Choose your numbers"
      options={[
        { value: 'one', label: 'One' },
        { value: 'two', label: 'Two' },
      ]}
    />
  </Provider>
)
0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.0

6 years ago

0.0.1

6 years ago

1.0.0

6 years ago