import React from 'react'
import PropTypes from 'prop-types'
import { Box, Flex } from 'rebass'
import { Bar, Heading, Page } from 'components/UI'
export const Window = props =>
export const Column = props =>
export const Group = ({ title, children, withBar = true }) => (
{title}
{withBar && }
{children}
)
Group.propTypes = {
title: PropTypes.string,
children: PropTypes.node,
withBar: PropTypes.bool
}
export const Element = props =>
export const Content = ({ children }) => (
{children}
)
Content.propTypes = {
children: PropTypes.node
}