import * as React from 'react'; import Text from '../../../text/Text'; type PropsType = Readonly<{ height: string; children: React.ReactNode; caption: string; onClick: () => void; }>; const DefaultStoryContainer = ({ height, children, caption, onClick, }: PropsType) => (
{caption}
{children}
); export default DefaultStoryContainer;