1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-26 21:36:40 +07:00

NodeLayout

This commit is contained in:
muerwre 2019-08-25 16:10:46 +07:00
parent 684a4f4474
commit b154277de8
23 changed files with 332 additions and 65 deletions

View file

@ -0,0 +1,11 @@
import React, { FC } from 'react';
import * as styles from './styles.scss';
import { LoaderCircle } from '~/components/input/LoaderCircle';
const NodeImageBlockPlaceholder: FC<{}> = () => (
<div className={styles.placeholder}>
<LoaderCircle size={64} />
</div>
);
export { NodeImageBlockPlaceholder };