Musical keyboard component written in React.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.ts 359 B

12345678
  1. import Keyboard from './components/Keyboard/Keyboard'
  2. import StyledNaturalKey from './components/StyledNaturalKey/StyledNaturalKey'
  3. import StyledAccidentalKey from './components/StyledAccidentalKey/StyledAccidentalKey'
  4. import keyPropTypes from './services/keyPropTypes'
  5. export default Keyboard
  6. export { keyPropTypes, StyledNaturalKey, StyledAccidentalKey }