20 lines
368 B
JavaScript
Raw Normal View History

2020-04-23 02:13:29 -04:00
/**
* Renders a block component
*/
2020-02-22 18:26:23 -05:00
export default class Block extends PureComponent {
2020-04-07 21:06:59 -04:00
static propTypes = {
2020-04-23 02:13:29 -04:00
children: PropTypes.any,
2020-04-07 21:06:59 -04:00
}
2020-02-22 18:26:23 -05:00
render() {
const { children } = this.props
return (
2020-04-29 18:32:49 -04:00
<div className={[_s.default, _s.boxShadowBlock, _s.bgPrimary, _s.overflowHidden, _s.radiusSmall].join(' ')}>
2020-02-22 18:26:23 -05:00
{children}
</div>
)
}
2020-04-07 21:06:59 -04:00
2020-02-22 18:26:23 -05:00
}