README
React-Guitar ·
A beautiful and accessible guitar component for React.
See https://react-guitar.com for a live demo.
For the full documentation go to the root README.
Usage
npm i react-guitar
import React from 'react'
import { render } from 'react-dom'
import Guitar from 'react-guitar'
render(
<Guitar strings={[0, 1, 2, 2, 0, -1]} />,
document.getElementById('root')
)
Check out the storybook for more advanced examples.
Developing
yarn start
will spin up the storybook.yarn build
will generate the production scripts under thedist
folder.