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

cleared out comments

This commit is contained in:
muerwre 2019-08-01 14:24:06 +07:00
parent 754e11cbcc
commit bef08be3d5
4 changed files with 17 additions and 14 deletions

View file

@ -30,6 +30,7 @@ export const TestGrid = () => (
width={Math.floor(Math.random() * 3)}
height={Math.floor(Math.random() * 3)}
title={`Cell ${el}`}
key={el}
/>
))
}

View file

@ -2,7 +2,6 @@ import React, {FC, HTMLAttributes} from 'react';
import { Card } from "~/components/containers/Card";
import * as styles from './styles.scss';
import classNames = require("classnames");
import {ParagraphPlaceholder} from "~/components/placeholders/ParagraphPlaceholder";
type IProps = HTMLAttributes<HTMLDivElement> & {
is_empty?: boolean;
@ -24,11 +23,7 @@ const Comment: FC<IProps> = ({
<div className={styles.thumb_image} />
</div>
<div className={styles.text}>
{
is_empty && <ParagraphPlaceholder />
}
</div>
<div className={styles.text} />
</Card>
);