Improved tags list section

This commit is contained in:
Alejandro Celaya
2018-08-16 19:19:57 +02:00
parent 49290b56ee
commit f7f0d8c7c1
5 changed files with 79 additions and 28 deletions

View File

@@ -0,0 +1,17 @@
import React from 'react';
import { Card } from 'reactstrap';
import classnames from 'classnames';
export default function MutedMessage({ children, marginSize = 4 }) {
const cardClasses = classnames('bg-light', `mt-${marginSize}`);
return (
<div className="col-md-10 offset-md-1">
<Card className={cardClasses} body>
<h3 className="text-center text-muted mb-0">
{children}
</h3>
</Card>
</div>
);
}