Files

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>;
};