import * as React from 'react'; export interface SectionProps { title: string; children: any[] | any; className?: string; } export function Section(props: SectionProps) { return (

{props.title}

{props.children}
); }