JSPM

  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q41040F
  • License MIT

Collection of essential React Composition Utilities

Package Exports

  • @rcuse/core

Readme

Collection of essential React Utilities

NPM version NPM Downloads GitHub stars code style

🚀 特性

  • Fully tree shakeable

🦄 使用

import { useBoolean } from '@rcuse/core';

export default () => {
  const [open, action] = useBoolean();
  
  // your code
}

📦 安装

# npm
npm i @rcuse/core

# yarn
yarn add @rcuse/core

# pnpm
pnpm i @rcuse/core