How can I use window resize event on react.js?
It works well, but sometimes it's in the wrong place when I reduce the size quickly by mouse.
that is my code
  window.addEventListener(
    'resize',
    () => {
      setSize(Math.ceil(nameInput?.current?.offsetWidth));
    },
    true,
  );
