Back to React Email

Row

apps/docs/components/row.mdx

0.0.15882 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/row -E
sh
yarn add @react-email/components -E

# or get the individual package

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

# or get the individual package

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

Getting started

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

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

const Email = () => {
  return (
    <Section>
      <Row>
        <Column>A</Column>
      </Row>
      <Row>
        <Column>B</Column>
      </Row>
      <Row>
        <Column>C</Column>
      </Row>
    </Section>
  );
};
<Support/>