import React, { FC, HTMLAttributes, ReactChild } from 'react'; export * from './common'; export * from './line-chart'; export * from './theming'; export interface Props extends HTMLAttributes { 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 export const Thing: FC = ({ children }) => { return
{children || `the snozzberries taste like snozzberries`}
; };