Musical keyboard component written in React.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

14 Zeilen
420 B

  1. import * as React from 'react'
  2. import * as PropTypes from 'prop-types'
  3. import Keyboard, { propTypes, } from './Keyboard'
  4. export default {
  5. title: 'Keyboard',
  6. }
  7. type Props = PropTypes.InferProps<typeof propTypes>
  8. // By passing optional props to this story, you can control the props of the component when
  9. // you consume the story in a test.
  10. export const Default = (props?: Partial<Props>) => <Keyboard {...props} />;