gab-social/app/javascript/gabsocial/components/card_view.js

17 lines
334 B
JavaScript
Raw Normal View History

2020-05-07 05:03:34 +01:00
export default class CardView extends PureComponent {
static propTypes = {
children: PropTypes.any,
}
render() {
const { children } = this.props
return (
<div className={[_s.default, _s.boxShadowBlock, _s.bgPrimary, _s.overflowHidden, _s.radiusSmall].join(' ')}>
{children}
</div>
)
}
}