Musical keyboard component written in React.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
TheoryOfNekomata fd3733e835 Improve key offsets vor 3 Jahren
.storybook Initial commit vor 3 Jahren
src Improve key offsets vor 3 Jahren
.editorconfig Initial commit vor 3 Jahren
.gitignore Update storybook vor 3 Jahren
.prettierrc Initial commit vor 3 Jahren
LICENSE Initial commit vor 3 Jahren
README.md Initial commit vor 3 Jahren
package.json Initial commit vor 3 Jahren
tsconfig.json Initial commit vor 3 Jahren
yarn.lock Initial commit vor 3 Jahren

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.