/** * Copyright (c) Facebook, Inc. and its affiliates. * * @emails react-core * @flow */ import React from 'react'; import {colors, fonts} from 'theme'; import type {Node} from 'react'; const Header = ({children}: {children: Node}) => (

{children}

); export default Header;