Skip to content

v0.1.1

Latest
Compare
Choose a tag to compare
@NekoSakuraLucia NekoSakuraLucia released this 24 Dec 14:40

Version 0.1.1 - New Hooks Added

What's New:

In this release, we've added 3 new hooks

  • useCallback: Memorizes the callback function to optimize performance by preventing unnecessary re-creations of functions during re-renders.
  • useReducer: A more advanced state management hook that allows you to manage state in a more predictable and scalable way, especially useful in complex state logic.
  • useMemo: Memorizes the result of a computation, preventing expensive recalculations unless dependencies change, helping you optimize performance.

Changelog:

  • Added: useCallback hook for optimizing function re-creations.
  • Added: useReducer hook for handling complex state management.
  • Added: useMemo hook for memoizing expensive calculations.

Fixes:

  • Minor bug fixes and internal improvements to ensure stability.

Upgrade to v0.1.1 and enjoy a more efficient development workflow!