PromucFlow_constructor/app/client/src/components/utils/Skeleton.tsx

16 lines
306 B
TypeScript
Raw Normal View History

2020-04-16 08:32:58 +00:00
import React from "react";
import { Classes } from "@blueprintjs/core";
import styled from "styled-components";
const StyledDiv = styled.div`
width: 100%;
height: 100%;
display: block;
`;
export function Skeleton() {
2020-04-16 08:32:58 +00:00
return <StyledDiv className={Classes.SKELETON} />;
}
2020-04-16 08:32:58 +00:00
export default Skeleton;