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 c4032ed7f4 Change metrics il y a 4 ans
.storybook Initial commit il y a 4 ans
src Change metrics il y a 4 ans
.editorconfig Initial commit il y a 4 ans
.gitignore Update storybook il y a 4 ans
.npmignore Update dependency list il y a 4 ans
.prettierrc Initial commit il y a 4 ans
LICENSE Initial commit il y a 4 ans
README.md Initial commit il y a 4 ans
package.json Change metrics il y a 4 ans
tsconfig.json Make accidentals more prominent il y a 4 ans
yarn.lock Remove extraneous dependency il y a 4 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.