Skip to content

0.0.3

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 08 Sep 19:18
· 1 commit to main since this release

0.0.3 - 2023-09-08

Added

  • initial={false}, allows you to skip the initial animation when the component mounts.

    In short, it takes the first value of animate and applies it as styles immediately.

    return (
      <m.div
        initial={false}
        animate={{width}}
      />
      /* equivalent to initial={{width}} */
    )