Musical keyboard component written in React.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
TheoryOfNekomata d9eb01b7ea Make function prototypes rigid 3 anni fa
.storybook Initial commit 3 anni fa
src Make function prototypes rigid 3 anni fa
.editorconfig Initial commit 3 anni fa
.gitignore Fix metrics, SSR support 3 anni fa
.npmignore Update dependency list 3 anni fa
.prettierrc Initial commit 3 anni fa
LICENSE Initial commit 3 anni fa
README.md Initial commit 3 anni fa
package.json Fix metrics, SSR support 3 anni fa
tsconfig.json Make accidentals more prominent 3 anni fa
yarn.lock Remove extraneous dependency 3 anni fa

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.