export interface Props { title: string; description?: string; comp: any; } export default function(props: Props) { return (

{ props.title }

{props.comp.separator()}

{ props.description }

) }