<Row>
  <Col>
    <h3>With No Children</h3>
    <Emptyable emptyState={<p className="EmptyState">There is no content here.</p>}/>
  </Col>
  <Col>
    <h3>With Children</h3>
    <Emptyable emptyState={<p className="EmptyState">There are no items here.</p>}>
      <p>Content <strong>is</strong> present.</p>
    </Emptyable>
  </Col>
</Row>