/** * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @emails react-core * @flow */ 'use strict'; import React from 'react'; import {media} from 'theme'; import type {Node} from 'react'; /** * This component wraps page content sections (eg header, footer, main). * It provides consistent margin and max width behavior. */ const Container = ({children}: {children: Node}) => (