/** @jsx jsx */ import { jsx } from '@emotion/core'; const maxWidth = 700; export function ContentArea({ children, css }) { return (
{children}
); } export function ContentAreaHeaderBar({ children, css }) { return (
{children}
); }