mirror of
https://github.com/outline/outline.git
synced 2026-06-24 08:44:24 +03:00
f6d889f759
Co-authored-by: Tom Moor <tom.moor@gmail.com>
23 lines
452 B
JavaScript
23 lines
452 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;
|
|
margin-left: 40px;
|
|
width: 75%;
|
|
`;
|
|
|
|
export default PlaceholderCollections;
|