aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/page-container/page-container-content.component.js
blob: a1d6988ccbe8714be1d608863461f23b152fb632 (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>
    )
  }

}