PromucFlow_constructor/app/client/src/components/utils/Skeleton.tsx
Satish Gandham 7f7f6f666b
Development: Add eslint rules for code consistency (#4083)
Co-authored-by: Satish Gandham <satish@appsmith.com>
Co-authored-by: Abhinav Jha <abhinav@appsmith.com>
2021-04-28 15:58:39 +05:30

16 lines
306 B
TypeScript

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() {
return <StyledDiv className={Classes.SKELETON} />;
}
export default Skeleton;