1.1.1 • Published 5 years ago

react-moonphase v1.1.1

Weekly downloads
2
License
GPL-3.0+
Repository
github
Last release
5 years ago

react-moonphase Build Status Greenkeeper badge

Display lunar phase with React and Pixi.js

Screenshot of moon phase

Demo

https://nikolas.github.io/react-moonphase/

Usage

  • npm install --save react-moonphase
import MoonPhaseView from 'react-moonphase';

// ...

render() {
    return (
        <MoonPhaseView
            moonPhase={this.state.moonPhase}
            onMoonPhaseUpdate={this.onMoonPhaseUpdate.bind(this)} />
    );
}