import React from "react";
import times from "lodash/times";
import Flex from "../Box/Flex";
import BackgroundImage from "./BackgroundImage";
import Img from "./Image";
export default {
title: "Components/Image",
argTypes: {},
};
export const Image: React.FC = () => {
return (
Image
);
};
export const ImageResponsive: React.FC = () => {
return (
Image
);
};
export const Background: React.FC = () => {
return (
);
};
export const BackgroundResponsive: React.FC = () => {
return (
);
};
export const LazyImages: React.FC = () => {
return (
{times(40, (index) => (
))}
);
};
export const LazyBackgrounds: React.FC = () => {
return (
{times(40, (index) => (
))}
);
};