Components
Row
Display a row that separates content areas horizontally in your email.
Install
Install component from your command line.
Getting started
Add the component to your email template. Include styles where needed.
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
All components were tested using the most popular email clients.
Gmail
Apple Mail
Outlook
Yahoo! Mail
HEY
Superhuman