import React from 'react'; import Skeleton from 'react-loading-skeleton'; import { Grid, Row, Col } from 'patternfly-react'; export const TaskSkeleton = () => { const details = [1, 2, 3, 4, 5, 6]; return (
{details.map((items, key) => ( ))}

); };