import * as React from 'react'; export function Header({ title, subTitle }: { title: any; subTitle: any }) { return (

{title}

{subTitle}
); }