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

NodeNoComments

This commit is contained in:
muerwre 2019-07-27 18:52:47 +07:00
parent ea87b50a83
commit b5b8d78cea
7 changed files with 69 additions and 9 deletions

View file

@ -7,8 +7,12 @@ type IProps = React.HTMLAttributes<HTMLDivElement> & {}
const Card: FC<IProps> = ({
className,
children,
...props
}) => (
<div className={classNames(styles.card, className)}>
<div
className={classNames(styles.card, className)}
{...props}
>
{children}
</div>
);