react-js-guitar-chords
v0.0.1
Published
Bare minimum guitar chord builder that does not use d3 or other libraries
Downloads
5
Readme
React Js Guitar Chords
Bare minimum guitar chord builder that does not use d3 or other libraries. It is a dummy component. Meaning for that is, it does not know any musical term or can build a chord from its name. You have to supply the input for it. I needed a simple component that does not drag lots of other dependencies.
Installation
- npm install --save react-js-guitar-chords
Usage
import Chord from 'react-js-guitar-chords';
class App extends Component {
render() {
return (
<div className="App">
<Chord name="C" notes="010230" />
</div>
);
}
}