mirror of
https://github.com/resend/react-email.git
synced 2026-09-14 14:18:02 +08:00
17 lines
383 B
TypeScript
17 lines
383 B
TypeScript
import { CodeInline, Text } from 'react-email';
|
|
import { Layout } from '../_components/layout';
|
|
|
|
export const component = (
|
|
<Text className="text-center">
|
|
Install the{' '}
|
|
<CodeInline className="rounded-[6px] bg-gray-300 px-[4px] py-[2px]">
|
|
react-email
|
|
</CodeInline>{' '}
|
|
package
|
|
</Text>
|
|
);
|
|
|
|
export default () => {
|
|
return <Layout>{component}</Layout>;
|
|
};
|