Dashboard sipadu mbip
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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