import React, { FC } from "react";
import { Flex, Skeleton } from "../../../components";
const ModalExampleContent: FC = () => {
const children = Array.from({ length: 2 }, (_value, index: number) => (
));
return (
{children}
);
};
export default ModalExampleContent;