TheoryOfNekomata e01d9d55c2 | před 4 roky | |
---|---|---|
.storybook | před 4 roky | |
src | před 4 roky | |
.editorconfig | před 4 roky | |
.gitignore | před 4 roky | |
.npmignore | před 4 roky | |
.prettierrc | před 4 roky | |
LICENSE | před 4 roky | |
README.md | před 4 roky | |
package.json | před 4 roky | |
tsconfig.json | před 4 roky | |
yarn.lock | před 4 roky |
Musical keyboard component written in React.
yarn add @theoryofnekomata/react-musical-keyboard
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)
MIT. See License file for details.