Dashboard sipadu mbip
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }