Musical keyboard component written in React.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
TheoryOfNekomata fd3733e835 Improve key offsets před 4 roky
.storybook Initial commit před 4 roky
src Improve key offsets před 4 roky
.editorconfig Initial commit před 4 roky
.gitignore Update storybook před 4 roky
.prettierrc Initial commit před 4 roky
LICENSE Initial commit před 4 roky
README.md Initial commit před 4 roky
package.json Initial commit před 4 roky
tsconfig.json Initial commit před 4 roky
yarn.lock Initial commit před 4 roky

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.