0.0.3 • Published 5 years ago

use-memoized-callback v0.0.3

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

useMemoizedCallback react hook

Install it with yarn:

yarn add use-memoized-callback 

or with npm:

npm i use-memoized-callback  --save

*For more information about callback memoization read this article.

Example

import React, { useState } from 'react';
import useMemoizedCallback  from 'use-memoized-callback '; 


function App(){
  const [counter, setCounter] = useState(0);

  const incCounter = useMemoizedCallback(event => {
    setCounter(counter + 1);
  }); // no dependency required

  return (
    <div>
      {/* 
          incCounter is memoized so AnotherComponent will not reRender each time.
      */}
       <AnotherComponent onClick={incCounter} /> 
    </div>
  );
}