Files
30-seconds-of-code/snippets/useUpdate.md
Isabelle Viktoria Maciohsek 581bb672b1 Make expertise a field
2022-03-01 20:24:15 +02:00

625 B

title, tags, expertise, firstSeen
title tags expertise firstSeen
React useUpdate hook components,reducer beginner 2021-09-24T05:00:00-04:00

Forces the component to re-render when called.

  • Use the useReducer() hook that creates a new object every time it's updated and return its dispatch.
const useUpdate = () => {
  const [, update] = React.useReducer(() => ({}));
  return update;
};
const MyApp = () => {
  const update = useUpdate();

  return (
    <>
      <div>Time: {Date.now()}</div>
      <button onClick={update}>Update</button>
    </>
  );
};

ReactDOM.render(<MyApp />, document.getElementById('root'));