--- export interface Props { title: string abovetext?: string } const { abovetext, title } = Astro.props let h2text if (abovetext === undefined) { h2text = 'The full list of my completed TAs can be found on my Youtube channel.' } else { h2text = abovetext } ---

{title}

{h2text}