import React from 'react'; import { States } from '../../utilities'; import { AspectRatioBox, AspectRatioBoxProps } from './AspectRatioBox'; export default { title: 'Components/AspectRatioBox' }; export const Default = () => ( > states={[ { aspectWidth: 3, aspectHeight: 4 }, { aspectWidth: 4, aspectHeight: 3 }, { aspectWidth: 3, aspectHeight: 3 }, { aspectWidth: 3, aspectHeight: 4, maxHeight: 100 }, { aspectWidth: 3, aspectHeight: 4, children:
Hello world
} ]} > );