A base react-hooks library.
Install @ihccc/hooks with npm
pnpm i @ihccc/hooksimport { useApi } from '@ihccc/hooks'
function UserList() {
const users = useApi(getAllUser, {
auto: true
});
// ...
}Clone the project
git clone https://@ihccc/hooksGo to the project directory
cd hooksInstall dependencies
pnpm installStart the server
pnpm run devTo run tests, run the following command
pnpm run testTo deploy this project run
pnpm run deploy