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 f8ec9ef2b4 Initial commit пре 3 година
.storybook Initial commit пре 3 година
src Initial commit пре 3 година
.editorconfig Initial commit пре 3 година
.gitignore Initial commit пре 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.