Musical keyboard component written in React.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
TheoryOfNekomata d9eb01b7ea Make function prototypes rigid преди 3 години
.storybook Initial commit преди 3 години
src Make function prototypes rigid преди 3 години
.editorconfig Initial commit преди 3 години
.gitignore Fix metrics, SSR support преди 3 години
.npmignore Update dependency list преди 3 години
.prettierrc Initial commit преди 3 години
LICENSE Initial commit преди 3 години
README.md Initial commit преди 3 години
package.json Fix metrics, SSR support преди 3 години
tsconfig.json Make accidentals more prominent преди 3 години
yarn.lock Remove extraneous dependency преди 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.