import React, { FC, HTMLAttributes, ReactChild } from 'react';
export interface Props extends HTMLAttributes {
/** custom content, defaults to 'the snozzberries taste like snozzberries' */
children?: 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: FC = ({ children }) => {
return
{children || `the snozzberries taste like snozzberries`}