mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 18:52:06 +00:00
Update user auth services
This commit is contained in:
@@ -3,12 +3,12 @@ import { Tailwind } from '@react-email/tailwind';
|
||||
|
||||
import { FC } from 'react';
|
||||
|
||||
interface ForgotEmailProps {
|
||||
interface ResetPasswordEmailProps {
|
||||
name?: string;
|
||||
url?: string;
|
||||
}
|
||||
|
||||
const ForgotEmail: FC<ForgotEmailProps> = ({ name, url }) => {
|
||||
const ResetPasswordEmail: FC<ResetPasswordEmailProps> = ({ name, url }) => {
|
||||
return (
|
||||
<Tailwind>
|
||||
<Container className="mx-auto">
|
||||
@@ -36,4 +36,4 @@ const ForgotEmail: FC<ForgotEmailProps> = ({ name, url }) => {
|
||||
);
|
||||
};
|
||||
|
||||
export default ForgotEmail;
|
||||
export default ResetPasswordEmail;
|
||||
|
||||
@@ -3,13 +3,13 @@ import { Tailwind } from '@react-email/tailwind';
|
||||
|
||||
import { FC } from 'react';
|
||||
|
||||
interface WelcomeEmail {
|
||||
interface WelcomeEmailProps {
|
||||
subject?: string;
|
||||
name?: string;
|
||||
url?: string;
|
||||
}
|
||||
|
||||
const Welcome: FC<WelcomeEmail> = ({ name, url }) => (
|
||||
const WelcomeEmail: FC<WelcomeEmailProps> = ({ name, url }) => (
|
||||
<Tailwind>
|
||||
<Container className="flex h-full w-full flex-col items-center justify-center">
|
||||
<Section>
|
||||
@@ -43,4 +43,4 @@ const Welcome: FC<WelcomeEmail> = ({ name, url }) => (
|
||||
</Tailwind>
|
||||
);
|
||||
|
||||
export default Welcome;
|
||||
export default WelcomeEmail;
|
||||
Reference in New Issue
Block a user