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 fd3733e835 Improve key offsets 3 yıl önce
.storybook Initial commit 3 yıl önce
src Improve key offsets 3 yıl önce
.editorconfig Initial commit 3 yıl önce
.gitignore Update storybook 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 Initial commit 3 yıl önce
tsconfig.json Initial commit 3 yıl önce
yarn.lock Initial commit 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.