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.
 
 
 
 

12 lines
258 B

  1. import * as PropTypes from 'prop-types'
  2. export default {
  3. keyChannels: PropTypes.arrayOf(
  4. PropTypes.shape({
  5. channel: PropTypes.number.isRequired,
  6. key: PropTypes.number.isRequired,
  7. velocity: PropTypes.number.isRequired,
  8. }),
  9. ),
  10. }