Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

triggerBrowserReflow.js 225B

12345
  1. // reading a dimension prop will cause the browser to recalculate,
  2. // which will let our animations work
  3. export default function triggerBrowserReflow(node) {
  4. node.offsetHeight; // eslint-disable-line no-unused-expressions
  5. }