export interface Props { heading: string; subheading?: string; } export default function(props: Props) { return (

{ props.heading }

󱀝

{ props.subheading }

) }