import { Content, Name, P, Template, Title } from '../components'; export type ChangeEmailNotificationProps = { to: string; }; export default function ChangeEmailNotification( props: ChangeEmailNotificationProps ) { return ( ); } ChangeEmailNotification.PreviewProps = { to: 'test@affine.pro', };