Musical keyboard component written in React.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
TheoryOfNekomata fd3733e835 Improve key offsets 3 роки тому
.storybook Initial commit 3 роки тому
src Improve key offsets 3 роки тому
.editorconfig Initial commit 3 роки тому
.gitignore Update storybook 3 роки тому
.prettierrc Initial commit 3 роки тому
LICENSE Initial commit 3 роки тому
README.md Initial commit 3 роки тому
package.json Initial commit 3 роки тому
tsconfig.json Initial commit 3 роки тому
yarn.lock Initial commit 3 роки тому

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.