import { Text } from '@react-email/components'; import { TFunction } from 'i18next'; import { EmailFooter } from './footer'; export default function CommonFooter({ t }: { t: TFunction }) { const namespace = 'common'; const lines = [ t(`${namespace}:footer.lines1`), t(`${namespace}:footer.lines2`), t(`${namespace}:footer.lines3`), t(`${namespace}:footer.lines4`), ]; return ( {lines.map((line, index) => ( ))} ); }