aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/page-container/page-container-content.component.js
blob: ffd62894cddab12ea691e896758ba4d3160d9826 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React, { Component } from 'react'
import PropTypes from 'prop-types'

export default class PageContainerContent extends Component {

  static propTypes = {
    children: PropTypes.node.isRequired,
  };

  render () {
    return (
      <div className="page-container__content">
        {this.props.children}
      </div>
    );
  }

}