import React from 'react'; import './overflow-scroll.stories.scss'; export default { title: 'Mixins/overflow-scroll' }; export const Default = () => (
Overflowed on the y axis!
); export const OverflowX = () => (
Overflowed on the x axis!
);