import React from 'react' import { Html, Head, Preview, Body, Container, Heading, Text, Section, Button, Hr } from '@react-email/components' export type WorkspaceReadyEmailCopy = { preview: string heading: string greeting: string body: string cta: string footer: string } type WorkspaceReadyEmailProps = { loginUrl: string copy: WorkspaceReadyEmailCopy } export default function WorkspaceReadyEmail({ loginUrl, copy }: WorkspaceReadyEmailProps) { return ( {copy.heading} {copy.preview} {copy.heading} {copy.greeting} {copy.body}

{copy.footer}
) }