mirror of
https://github.com/outline/outline.git
synced 2026-06-23 00:04:23 +03:00
30cf244610
* Improve visual of loading mask * Normalize placeholder naming * Remove unused file
22 lines
431 B
JavaScript
22 lines
431 B
JavaScript
// @flow
|
|
import * as React from "react";
|
|
import styled from "styled-components";
|
|
import PlaceholderText from "components/PlaceholderText";
|
|
|
|
function PlaceholderCollections() {
|
|
return (
|
|
<Wrapper>
|
|
<PlaceholderText />
|
|
<PlaceholderText delay={0.2} />
|
|
<PlaceholderText delay={0.4} />
|
|
</Wrapper>
|
|
);
|
|
}
|
|
|
|
const Wrapper = styled.div`
|
|
margin: 4px 16px;
|
|
width: 75%;
|
|
`;
|
|
|
|
export default PlaceholderCollections;
|