Co-authored-by: Félix Malfait <felix.malfait@gmail.com> Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
27 lines
664 B
TypeScript
27 lines
664 B
TypeScript
import { i18n } from '@lingui/core';
|
|
import { BaseEmail } from 'src/components/BaseEmail';
|
|
import { Title } from 'src/components/Title';
|
|
import { APP_LOCALES } from 'twenty-shared/translations';
|
|
|
|
type TestEmailProps = {
|
|
locale: keyof typeof APP_LOCALES;
|
|
};
|
|
|
|
// This is a test email which isn't used in production
|
|
// It's useful to do tests and play in a local environment
|
|
export const TestEmail = ({ locale }: TestEmailProps) => {
|
|
return (
|
|
<BaseEmail locale={locale}>
|
|
<Title value={i18n._('Test email')} />
|
|
<br />
|
|
<br />
|
|
</BaseEmail>
|
|
);
|
|
};
|
|
|
|
TestEmail.PreviewProps = {
|
|
locale: 'en',
|
|
} as TestEmailProps;
|
|
|
|
export default TestEmail;
|