1.0.0 • Published 7 years ago

react-hamburgers v1.0.0

Weekly downloads
2,420
License
ISC
Repository
github
Last release
7 years ago

react-hamburgers

React component for Jonathan Suh's hamburguers (https://jonsuh.com/hamburgers/)

Install this package with:

npm i -S react-hamburgers

Configure hamburgers following the oficial doc (https://github.com/jonsuh/hamburgers)

Use react-hamburgers component as follows:

import React from 'react';
import Hamburger from 'react-hamburgers';

export default class MyComponent extends React.Component() {

  constructor(props) {
    super(props);
    this.state = { active: false };
  }

  render() {
    return (
      <div>
        <Hamburger
          active={this.state.active}
          type="slider"
          onClick={() => this.setState({ active: !this.state.active })}
        >
      </div>
    );
  }
}