mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-26 13:26:40 +07:00
NodeNoComments
This commit is contained in:
parent
ea87b50a83
commit
b5b8d78cea
7 changed files with 69 additions and 9 deletions
16
src/components/node/NodeNoComments/index.tsx
Normal file
16
src/components/node/NodeNoComments/index.tsx
Normal file
|
@ -0,0 +1,16 @@
|
|||
import React, { FC } from "react";
|
||||
import { Comment } from "~/components/node/Comment";
|
||||
import * as styles from './styles.scss';
|
||||
import {Group} from "~/components/containers/Group";
|
||||
|
||||
interface IProps {}
|
||||
|
||||
const NodeNoComments: FC<IProps> = () => (
|
||||
<Group className={styles.wrap}>
|
||||
<Comment is_empty={true} is_loading={false} style={{ height: 94 }} />
|
||||
<Comment is_empty={true} is_loading={false} style={{ height: 104 }} />
|
||||
<Comment is_empty={true} is_loading={false} style={{ height: 100 }} />
|
||||
</Group>
|
||||
);
|
||||
|
||||
export { NodeNoComments };
|
6
src/components/node/NodeNoComments/styles.scss
Normal file
6
src/components/node/NodeNoComments/styles.scss
Normal file
|
@ -0,0 +1,6 @@
|
|||
.wrap {
|
||||
height: 300px;
|
||||
overflow: hidden;
|
||||
|
||||
@include after_shade($node_bg);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue