Musical keyboard component written in React.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
TheoryOfNekomata b6ea02a3ad Add keyboard map il y a 3 ans
.storybook Add keyboard map il y a 3 ans
src Add keyboard map il y a 3 ans
.editorconfig Initial commit il y a 3 ans
.gitignore Fix metrics, SSR support il y a 3 ans
.npmignore Update dependency list il y a 3 ans
.prettierrc Initial commit il y a 3 ans
LICENSE Initial commit il y a 3 ans
README.md Initial commit il y a 3 ans
package.json Fix metrics, SSR support il y a 3 ans
tsconfig.json Make accidentals more prominent il y a 3 ans
yarn.lock Remove extraneous dependency il y a 3 ans

README.md

Musical Keyboard

Musical keyboard component written in React.

Installation

yarn add @theoryofnekomata/react-musical-keyboard

Usage

import * as React from 'react'
import ReactDOM from 'react-dom'
import Keyboard from '@theoryofnekomata/react-musical-keyboard'

const App = () => {
  return (
    <div>
      <Keyboard startKey={21} endKey={108}/>
    </div>
  )
}

const container = window.document.createElement('div')

ReactDOM.render(<App />, container)

window.document.body.appendChild(container)

License

MIT. See License file for details.