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.