-
What are the differences between the inherent React Suspense API and this package? Why might/not this package be preferable?
-
I have tried to animate views that are lazy loaded with `React.lazy();`
i have just picked the example at [link](http://reactcommunity.org/react-transition-group/with-react-router/) and modified th…
-
### Link to the code that reproduces this issue
https://github.com/gavrilikhin-d/repro
### To Reproduce
Test prefetching in production mode
1. ```bash
npm install
npm run build
…
-
For Client-Side-Render-Optimation one can use React.lazy:
somehow all assets (js & css) gets the correct path set, but only the lazy-loaded onces are trying to resolve a wrong path.
To fix this, i…
YeonV updated
3 years ago
-
it's currently pretty hard to get a type-safe dynamic import using BuckleScript. it's even harder to use `React.lazy`.
how would you feel about having a PPX:
```reason
module ReactLazy = {
…
-
Is it already possible to lazy load components using navi?
```
import React, {lazy} from 'react';
import useStyles from './Blocks.styles';
const Paragraph = lazy(() => import('components/Parag…
-
### Link to the code that reproduces this issue
https://github.com/edenstrom/nextjs-dynamic-css-modules-reproduction
### To Reproduce
1. Start the application in development mode with `npm ru…
-
### Description
It would be ideal not to tightly integrate async storage within the SDK, allowing us to inject other types of storage options. There is an object called `persistentCacheProvider`, b…
-
### Is there an existing issue for this?
- [X] I have searched the existing issues
### Describe the issue
**Describe the bug**
I get this error whenever i try using the Flatlist component fr…
-
## Bug Report
**Current Behavior**
I have a create-react-app based site that contains a page that lazily loads a library:
```js
const Chart = React.lazy(() => import('react-google-charts'));
``…