1.0.7 • Published 25 days ago

babel-plugin-react-suspense v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
25 days ago

<Component suspense={<Fallback />} />

↓ ↓ ↓ ↓ ↓ ↓

<React.Suspense fallback={<Fallback />}><Component /></React.Suspense


GitHub Workflow Status (branch) Codecov branch npm npm downloads License GitHub contributors (via allcontributors.org)

Features

  • 🤖 Smart enough to import and use Suspense based on user source.
  • 🌟 Simply to adopt (just add new attributes or props in your element with suspense as key and value as fallback.

Getting Started

[Back to the Table of Contents]

Installation

[Back to the Getting Started]

  • yarn
    • yarn add babel-plugin-react-suspense
  • npm
    • npm -i babel-plugin-react-suspense

Configuration

[Back to the Getting Started]

// babel configuration
-- plugins: []
++ plugins: ["babel-plugin-react-suspense"]

Usage

[Back to the Getting Started]

This babel plugin will enable special prop name (attributes jsx) called suspense every JSXElement declaration. (seem like css prop, if you familiar with styled-component or emotion).

const App = () => (
  <>
    <User suspense={<Fallback />} />
  </>
);

Contributors

[Back to the Table of Contents]

1.0.7

25 days ago

1.0.6

25 days ago

1.0.5

10 months ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago