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 d9eb01b7ea Make function prototypes rigid před 3 roky
.storybook Initial commit před 3 roky
src Make function prototypes rigid před 3 roky
.editorconfig Initial commit před 3 roky
.gitignore Fix metrics, SSR support před 3 roky
.npmignore Update dependency list před 3 roky
.prettierrc Initial commit před 3 roky
LICENSE Initial commit před 3 roky
README.md Initial commit před 3 roky
package.json Fix metrics, SSR support před 3 roky
tsconfig.json Make accidentals more prominent před 3 roky
yarn.lock Remove extraneous dependency před 3 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.