This commit is contained in:
mgabdev
2020-04-07 21:06:59 -04:00
parent b5e3c2a94f
commit bb4fcdf32d
101 changed files with 1069 additions and 1886 deletions

View File

@@ -1,4 +1,9 @@
export default class Block extends PureComponent {
static propTypes = {
children: PropTypes.node,
}
render() {
const { children } = this.props
@@ -8,4 +13,5 @@ export default class Block extends PureComponent {
</div>
)
}
}