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 f8ec9ef2b4 Initial commit il y a 3 ans
.storybook Initial commit il y a 3 ans
src Initial commit il y a 3 ans
.editorconfig Initial commit il y a 3 ans
.gitignore Initial commit 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 Initial commit il y a 3 ans
tsconfig.json Initial commit il y a 3 ans
yarn.lock Initial commit 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.