mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 07:58:31 +00:00
20 lines
312 B
React
20 lines
312 B
React
|
|
import React, { Component, PropTypes } from 'react';
|
||
|
|
|
||
|
|
class QueryPageWrapper extends Component {
|
||
|
|
static propTypes = {
|
||
|
|
children: PropTypes.node,
|
||
|
|
};
|
||
|
|
|
||
|
|
render () {
|
||
|
|
const { children } = this.props;
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
{children}
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default QueryPageWrapper;
|