import React from "react" export interface TopicProps { children: React.ReactNode, heading: React.ReactNode, } export function Topic(props: TopicProps) { return (

{props.heading}

{props.children}
) }