Musical keyboard component written in React.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

14 wiersze
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} />;