import * as React from 'react'; import styled from '@emotion/styled'; import Feature from 'app/components/acl/feature'; import GlobalSelectionHeader from 'app/components/organizations/globalSelectionHeader'; import {PageContent} from 'app/styles/organization'; import withGlobalSelection from 'app/utils/withGlobalSelection'; const Body = styled('div')` background-color: ${p => p.theme.backgroundSecondary}; flex-direction: column; flex: 1; `; const MonitorsContainer: React.FC = ({children}) => ( {children} ); export default withGlobalSelection(MonitorsContainer); export {MonitorsContainer};