0.1.3 • Published 3 years ago

react-bulma-ui-elements v0.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

This package provides collection of commonly used react components which is based on bulma css.

Storybook : react-bulma-ui-elements

🚅 Quick start

  1. Install the dependencies.

    This package depends on bulma css, therefore install bulma first

    npm i --save bulma
  2. Installation.

    npm i --save react-bulma-ui-elements

🔎 Usage

  1. Import components.

    Start using components by importing it into your project

    import { Button } from "react-bulma-ui-elements";
    
    <Button color="primary" size="small" onClick={() => {}}>Click Me</Button>