Fretboard 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.
 
 
 

11 line
318 B

  1. import React from 'react'
  2. import Fretboard, { Props } from './Fretboard'
  3. export default {
  4. title: 'Welcome',
  5. }
  6. // By passing optional props to this story, you can control the props of the component when
  7. // you consume the story in a test.
  8. export const Default = (props?: Partial<Props>) => <Fretboard {...props} />