Back to React Email

Section

apps/docs/components/section.mdx

0.0.151019 B
Original Source

import Support from '/snippets/support.mdx'

Install

Install component from your command line.

<CodeGroup>
sh
npm install @react-email/components -E

# or get the individual package

npm install @react-email/section -E
sh
yarn add @react-email/components -E

# or get the individual package

yarn add @react-email/section -E
sh
pnpm add @react-email/components -E

# or get the individual package

pnpm add @react-email/section -E
</CodeGroup>

Getting started

Add the component to your email template. Include styles where needed.

jsx
import { Section, Column, Row, Text } from "@react-email/components";

const Email = () => {
  return (
    <Section>
      <Text>Hello World</Text>
    </Section>
     <Section>
      <Row>
        <Column>Column 1, Row 1</Column>
        <Column>Column 2, Row 1</Column>
      </Row>
      <Row>
        <Column>Column 1, Row 2</Column>
        <Column>Column 2, Row 2</Column>
      </Row>
    </Section>
  );
};
<Support/>