文件名称:lib-react-hooks:通用React钩子库:atom_symbol_selector:
文件大小:252KB
文件格式:ZIP
更新时间:2024-02-23 18:58:42
react javascript npm typescript mdx
React Hooks库 通用React钩子库 安装 yarn安装: $ yarn add lib-react-hooks 或者,如果您愿意,则选择npm : $ npm install --save lib-react-hooks 用法 只需导入要在React组件中使用的任何钩子即可。 使用useAsync示例: import React from 'react' ; import { useAsync } from 'lib-react-hooks' ; const Component = ( ) => { const request = useAsync ( async ( ) => { const response = await fetch ( 'https://api.example.com/users/123' ) ; return response . json ( ) ; } ) ; return ( < div> { request . complete ? ( < p> { `Name:
【文件预览】:
lib-react-hooks-master
----netlify.toml(54B)
----.eslintrc(35B)
----doczrc.js(236B)
----rollup.config.js(935B)
----.github()
--------ISSUE_TEMPLATE.md(569B)
--------PULL_REQUEST_TEMPLATE.md(1KB)
--------CONTRIBUTING.md(2KB)
----commitlint.config.js(72B)
----yarn.lock(627KB)
----.node-version(7B)
----src()
--------use-async.ts(916B)
--------index.ts(51B)
--------__tests__()
----babel.config.js(81B)
----.travis.yml(81B)
----tsconfig.json(374B)
----LICENSE(0B)
----README.md(1KB)
----docs()
--------use-async.mdx(1KB)
--------getting-started.mdx(760B)
--------introduction.mdx(3KB)
----.gitignore(1KB)
----package.json(3KB)
----.nvmrc(7B)