import React from 'react'; export interface Props { /** custom content, defaults to 'the snozzberries taste like snozzberries' */ children?: React.ReactChild; } // Please do not use types off of a default export module or else Storybook Docs will suffer. // see: https://github.com/storybookjs/storybook/issues/9556 /** * A custom Thing component. Neat! */ export const Thing = ({ children }: Props) => { return (