1.1.2 • Published 3 years ago
react-guitar-sound v1.1.2
React-Guitar-Sound · 
A React Hook to play sound with react-guitar.
See https://react-guitar.com for a live demo.
For the full documentation go to the root README.
Usage
npm i react-guitar react-guitar-sound react-guitar-tuningsimport React, { useMemo } from 'react'
import { render } from 'react-dom'
import Guitar from 'react-guitar'
import { standard } from 'react-guitar-tunings'
import useSound from 'react-guitar-sound'
function SampleGuitarWithSound() {
  const strings = useMemo(() => [0, 1, 2, 2, 0, -1], [])
  const { play, strum } = useSound({ fretting: strings, tuning: standard })
  return <Guitar strings={strings} onPlay={play} />
}
render(<SampleGuitarWithSound />, document.getElementById('root'))Developing
yarn startwill watch and rebuild.yarn buildwill generate the production scripts under thedistfolder.