This package has been deprecated

Author message:

The project has moved to a single package. Please install `jsx-email` for further updates

@jsx-email/section
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

npm Join our Discord libera manifesto

JSX email

@jsx-email/section

JSX email A JSX email component which creates section bordaries that can be formatted with columns and rows

@jsx-email/section Documentation

Requirements

This package requires an LTS Node version (v18.0.0+) and React v18.2.0+.

Install

pnpm add @jsx-email/section

# We recommend pnpm - https://pnpm.io
# But npm and yarn are supported
# npm add @jsx-email/section
# yarn add @jsx-email/section

Usage

We recommend using the @jsx-email/cli for creating new templates.

Create an email template file (e.g. Email.tsx) and import the component:

import { Section } from '@jsx-email/section';
import { Column } from '@jsx-email/column';
import { Row } from '@jsx-email/row';
import { Text } from '@jsx-email/text';

const Email = () => {
  return (
    {/* A simple `section` */}
    <Section>
      <Text>Hello World</Text>
    </Section>

    {/* Formatted with `rows` and `columns` */}
     <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>
  );
};

Please see the @jsx-email/section Documentation for props and additional usage information.

Attribution 🧡

This package was built upon prior work for react-email by Bu Kinoshita (@bukinoshita) and Zeno Rocha (@zenorocha).

License

MIT License

Readme

Keywords

Package Sidebar

Install

npm i @jsx-email/section

Weekly Downloads

272

Version

1.0.2

License

MIT

Unpacked Size

11.2 kB

Total Files

15

Last publish

Collaborators

  • shellscape