hbm-react-componentsdeprecated

HBM React components

Usage no npm install needed!

<script type="module">
  import hbmReactComponents from 'https://cdn.skypack.dev/hbm-react-components';
</script>

README

hbm-react-components

js-standard-style Build Status npm Coverage Status

Sauce Test Status

Installation

$ npm install --save hbm-react-components

Usage

/js/index.js

import React from 'react';
import {Button} from 'react-components';


class App extends React.Component {

  onClick = () => {
    console.log('clicked');
  }

  render() {
    return (
      <div>
        <Button onClick={this.onClick}>
          Hello
        </Button>
      </div>
    );
  }

}

/css/index.scss

@import "../node_modules/react-components/css/hbm";
@import "../node_modules/react-components/button/Button";

Design Decisions

Interested in more of our technical decisions? See Design Decisions.

Development

New release

np - A better npm publish

$ np

License

MIT