import styles from "./styles.module.scss" import { TextDiv } from '@/components/Text/TextDiv' type EventExcerptProps = { what?: string | null, where?: string | null, who?: string | null } type RowProps = { label: string, text: string } const Row = ({label, text}: RowProps) => { return (