mirror of
https://github.com/resend/react-email.git
synced 2026-09-14 14:18:02 +08:00
26 lines
532 B
TypeScript
26 lines
532 B
TypeScript
import { CodeInline, Text } from 'react-email';
|
|
import { Layout } from '../_components/layout';
|
|
|
|
export const component = (
|
|
<Text style={{ textAlign: 'center' }}>
|
|
Install the{' '}
|
|
<CodeInline
|
|
style={{
|
|
backgroundColor: 'rgb(209,213,219)',
|
|
borderRadius: 6,
|
|
paddingLeft: 4,
|
|
paddingRight: 4,
|
|
paddingTop: 2,
|
|
paddingBottom: 2,
|
|
}}
|
|
>
|
|
react-email
|
|
</CodeInline>{' '}
|
|
package
|
|
</Text>
|
|
);
|
|
|
|
export default () => {
|
|
return <Layout>{component}</Layout>;
|
|
};
|