Description:
A beautiful, flexible, and full-featured guitar component for React.
Features:
- Custom tuning
- Left Hand & Right Hand layouts
- Play on hover
- Allows to specify the number of frets
Install & Import:
# NPM $ npm i react-guitar --save
import React from 'react'
import { render } from 'react-dom'
import Guitar from 'react-guitar'Basic Usage:
render(
<Guitar strings={[0, 1, 2, 2, 0, 0]} />,
document.getElementById("root")
);Preview: