import { Styles } from '@0xproject/react-shared'; import * as React from 'react'; export interface SectionProps { header: React.ReactNode; body: React.ReactNode; } export const Section = (props: SectionProps) => { return (
{props.header}
{props.body}
); };