This is the guts of preact-cli
's import X from 'async!./x'
feature, extracted into a standalone library.
It creates a wrapper component that, when rendered, lazy-loads your real component. While loading, any SSR'd DOM is preserved intact.
This is the API of React.lazy()
or preact-iso's lazy(), but it does not use Suspense.
import { lazy } from './preact-async-component.js';
const LazyRoute = lazy(() => import('./routes/about'));
function App() {
return (
<Router>
<LazyRoute path="/about" /> // only loads when matched
</Router>
);
}
This is the API from preact-async-route, it just supports Preact 10.
import { AsyncRoute } from './preact-async-component.js';
function App() {
return (
<Router>
<AsyncRoute path="/about" getComponent={() => import('./routes/about')} />
</Router>
);
}