Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Display a row that separates content areas horizontally in your email.
npm install react-email -E
import { Row, Column, Section } from "react-email"; const Email = () => { return ( <Section> <Row> <Column>A</Column> </Row> <Row> <Column>B</Column> </Row> <Row> <Column>C</Column> </Row> </Section> ); };