Files
AFFiNE/packages/backend/server/src/mails/components/doc.tsx
2025-03-25 12:58:43 +00:00

17 lines
296 B
TypeScript

import { Link } from '@react-email/components';
import { Bold } from './template';
export interface DocProps {
title: string;
url: string;
}
export const Doc = (props: DocProps) => {
return (
<Link href={props.url}>
<Bold>{props.title || 'Untitled'}</Bold>
</Link>
);
};