import { useSession } from "next-auth/react"; export function MailLink({ subject, body }: { subject: string; body?: string }) { const { data } = useSession(); return ( {subject ? subject : body} ); } export default function AppSettings() { return ( <>

Example questions:

Or, any of that in a thread:

Or, doing multiple things:

); }