Display a row that separates content areas horizontally in your email.
Install component from your command line.
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> ); };
All components were tested using the most popular email clients.
Gmail
Apple Mail
Outlook
Yahoo! Mail
HEY
Superhuman