1.0.1 • Published 9 months ago

use-atom-creator v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
9 months ago

Use Atom Creator

简单地在React组件级别创建atom并使用

快速上手

安装依赖

npm install use-atom-creator
# or
yarn add use-atom-creator
# or
pnpm add use-atom-creator

使用

const App = () => {
  const countAtom = useAtomCreator(0);
  const [count, setCount] = useAtom(countAtom);
  return (
    <div>
      {count}
      <button onClick={() => setCount(count + 1)}>+</button>
    </div>
  );
};
1.0.1

9 months ago

1.0.0

9 months ago