Musical keyboard component written in React.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
TheoryOfNekomata d9eb01b7ea Make function prototypes rigid 3 yıl önce
.storybook Initial commit 3 yıl önce
src Make function prototypes rigid 3 yıl önce
.editorconfig Initial commit 3 yıl önce
.gitignore Fix metrics, SSR support 3 yıl önce
.npmignore Update dependency list 3 yıl önce
.prettierrc Initial commit 3 yıl önce
LICENSE Initial commit 3 yıl önce
README.md Initial commit 3 yıl önce
package.json Fix metrics, SSR support 3 yıl önce
tsconfig.json Make accidentals more prominent 3 yıl önce
yarn.lock Remove extraneous dependency 3 yıl önce

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.