文件名称:react-lazy-render:延迟渲染异步React组件
文件大小:245KB
文件格式:ZIP
更新时间:2024-03-26 15:30:50
TypeScript
懒惰React 异步React组件的延迟渲染。 用法 import LazyFactory from '@jeswr/react-lazy-renderer' const LazyTextDisplay = LazyFactory < { text : Promise < string> | string } > ( async ( { text } ) => { const resolvedText = ` ${ await text } ` ; return < > { resolvedText } < / > ; } , ) ; function App ( ) { return < LazyTextDisplay xss=removed> ; } 执照 :copyright:2021年至今 ,。
【文件预览】:
react-lazy-render-main
----.eslintrc.json(553B)
----.gitignore(2KB)
----package.json(2KB)
----package-lock.json(1014KB)
----SECURITY.md(385B)
----LICENSE(1KB)
----tsconfig.json(6KB)
----.github()
--------workflows()
--------dependabot.yml(500B)
----__tests__()
--------main-test.tsx(2KB)
----README.md(1KB)
----lib()
--------index.tsx(911B)