mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
13 lines
311 B
JavaScript
13 lines
311 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>;
|
|
}
|
|
}
|