import React from 'react' import PropTypes from 'prop-types' /** * Renders a block component */ class Block extends React.PureComponent { render() { const { children } = this.props return (
{children}
) } } Block.propTypes = { children: PropTypes.any, } export default Block