File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,23 +4,18 @@ import {
4
4
Container ,
5
5
Head ,
6
6
Html ,
7
- Img ,
8
7
Link ,
9
8
Preview ,
10
9
Section ,
11
10
Text ,
12
11
render ,
13
12
} from '@react-email/components' ;
14
- import * as React from 'react' ;
15
- import config from '../config/config.service' ;
16
13
17
14
export interface DropboxResetPasswordEmailProps {
18
15
userFirstname ?: string ;
19
16
resetPasswordLink ?: string ;
20
17
}
21
18
22
- const baseUrl = config . CLIENT_SIDE_URL || '' ;
23
-
24
19
export const DropboxResetPasswordEmail = ( {
25
20
userFirstname,
26
21
resetPasswordLink,
@@ -59,6 +54,11 @@ export const DropboxResetPasswordEmail = ({
59
54
) ;
60
55
} ;
61
56
57
+ DropboxResetPasswordEmail . PreviewProps = {
58
+ userFirstname : 'Alan' ,
59
+ resetPasswordLink : 'https://dropbox.com' ,
60
+ } as DropboxResetPasswordEmailProps ;
61
+
62
62
export default DropboxResetPasswordEmail ;
63
63
64
64
const main = {
You can’t perform that action at this time.
0 commit comments