import * as React from 'react'; export interface SectionProps { header?: React.ReactNode; body: React.ReactNode; } export const Section = (props: SectionProps) => { return (
{!!props.header && props.header} {props.body}
); };