Files
bodyshop/client/src/components/loading-skeleton/loading-skeleton.component.jsx
2020-07-14 15:23:38 -07:00

13 lines
271 B
JavaScript

import React from "react";
import "./loading-skeleton.styles.scss";
import { Skeleton } from "antd";
export default function LoadingSkeleton(props) {
return (
<Skeleton {...props} className="loading-skeleton" active>
{props.children}
</Skeleton>
);
}