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;
|
|
|
|
|
`;
|
|
|
|
|
|
2021-04-28 10:28:39 +00:00
|
|
|
export function Skeleton() {
|
2020-04-16 08:32:58 +00:00
|
|
|
return <StyledDiv className={Classes.SKELETON} />;
|
2021-04-28 10:28:39 +00:00
|
|
|
}
|
2020-04-16 08:32:58 +00:00
|
|
|
|
|
|
|
|
export default Skeleton;
|