Musical keyboard component written in React.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
TheoryOfNekomata d9eb01b7ea Make function prototypes rigid 3 lat temu
.storybook Initial commit 3 lat temu
src Make function prototypes rigid 3 lat temu
.editorconfig Initial commit 3 lat temu
.gitignore Fix metrics, SSR support 3 lat temu
.npmignore Update dependency list 3 lat temu
.prettierrc Initial commit 3 lat temu
LICENSE Initial commit 3 lat temu
README.md Initial commit 3 lat temu
package.json Fix metrics, SSR support 3 lat temu
tsconfig.json Make accidentals more prominent 3 lat temu
yarn.lock Remove extraneous dependency 3 lat temu

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.