import React from 'react'; import PropTypes from 'prop-types'; import styled from 'styled-components'; const Header = styled.div` width: 100%; color: orange; background: red; `; const Footer = styled.div` width: 100%; color: orange; background: blue; position: absolute; bottom: 0; `; const Screen = ({ children }) => (
{children}
); Screen.propTypes = { children: PropTypes.node.isRequired }; export default () => (

Test

);