3.0.4 • Published 6 years ago

reactbulma v3.0.4

Weekly downloads
127
License
-
Repository
github
Last release
6 years ago

React-Bulma

React.js components for Modern CSS framework based on Flexbox

2017-06-01 2 52 24

JavaScript Style Guide

Installation

npm install reactbulma

Usage

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

const App => () =>
  <div>
      <Button primary>Primary</Button>
      <Button info>Info</Button>
      <Button success>Success</Button>
      <Button warning>Warning</Button>
      <Button danger>Danger</Button>
  </div>

export default App

2017-10-10 22 16 02