mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
19 lines
341 B
JavaScript
19 lines
341 B
JavaScript
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>
|
|
)
|
|
}
|
|
|
|
}
|