mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-15 17:16:16 +08:00
83ed215f4a
use `yarn af server dev:mail` to preview all mail template fix CLOUD-93
10 lines
169 B
TypeScript
10 lines
169 B
TypeScript
import { Name } from './template';
|
|
|
|
export interface UserProps {
|
|
email: string;
|
|
}
|
|
|
|
export const User = (props: UserProps) => {
|
|
return <Name>{props.email}</Name>;
|
|
};
|