import React from 'react';
import { Text } from '../Text';
import { Constrain } from './Constrain';
import { ExceedConstrain } from './ExceedConstrain';
export default { title: 'Components/ExceedConstrain' };
const Constrained = () => {
return (
This div is constrained.
This exceeds the constrain.
);
};
export const MediumViewport = () => ;
MediumViewport.story = { parameters: { viewport: { defaultViewport: 'md' } } };
export const SmallViewport = () => ;
SmallViewport.story = { parameters: { viewport: { defaultViewport: 'sm' } } };
export const XSmallViewport = () => ;
XSmallViewport.story = { parameters: { viewport: { defaultViewport: 'xs' } } };