TheoryOfNekomata 4be84388d0 | преди 4 години | |
---|---|---|
.storybook | преди 4 години | |
src | преди 4 години | |
.editorconfig | преди 4 години | |
.gitignore | преди 4 години | |
.prettierrc | преди 4 години | |
LICENSE | преди 4 години | |
README.md | преди 4 години | |
package.json | преди 4 години | |
tsconfig.json | преди 4 години | |
yarn.lock | преди 4 години |
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.