Musical keyboard component written in React.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
TheoryOfNekomata fd3733e835 Improve key offsets 4年前
.storybook Initial commit 4年前
src Improve key offsets 4年前
.editorconfig Initial commit 4年前
.gitignore Update storybook 4年前
.prettierrc Initial commit 4年前
LICENSE Initial commit 4年前
README.md Initial commit 4年前
package.json Initial commit 4年前
tsconfig.json Initial commit 4年前
yarn.lock Initial commit 4年前

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.