import React, { FC } from "react"; import { Flex, Skeleton } from "../../../components"; import "./Dialog.stories.scss"; export interface ExampleContent { rowsCount?: number; } export const ExampleContent: FC = ({ rowsCount = 3 }) => { const children = Array.from({ length: rowsCount }, (_value, index: number) => ( )); return ( {children} ); };