react-bulma icon indicating copy to clipboard operation
react-bulma copied to clipboard

React.js components for Modern CSS framework based on Flexbox

React-Bulma

React.js components for Modern CSS framework based on Flexbox

  • Styleguide: https://kulakowka.github.io/react-bulma/
  • Official Repo: https://github.com/jgthms/bulma
  • Official Site: http://bulma.io
  • NPM: http://npmjs.com/package/reactbulma

2017-06-01 2 52 24

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