1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

tried to make placeholders

This commit is contained in:
muerwre 2019-07-27 19:06:00 +07:00
parent b5b8d78cea
commit 7410376009
5 changed files with 67 additions and 1 deletions

View file

@ -0,0 +1,28 @@
import React, { FC } from 'react';
import { Placeholder } from "~/components/placeholders/Placeholder";
import * as styles from './styles.scss';
import {Group} from "~/components/containers/Group";
const ParagraphPlaceholder = ({ }) => (
<Group>
<div className={styles.para}>
<Placeholder width={120} />
<Placeholder width={60} />
<Placeholder width={30} />
<Placeholder width={70} />
<Placeholder width={160} />
<Placeholder width={30} />
</div>
<div className={styles.para}>
<Placeholder width={40} />
<Placeholder width={30} />
<Placeholder width={120} />
<Placeholder width={70} />
<Placeholder width={160} />
<Placeholder width={30} />
</div>
</Group>
);
export { ParagraphPlaceholder };