Back to Popmotion

Enter/exit: Single component

packages/popmotion-pose/docs/examples/react/enter-exit.md

8.7.1415 B
Original Source

Enter/exit: Single component

PoseGroup can be used to animate enter and exit states of a single component when it's added/removed to and from the component tree.

javascript
const Modal = posed.div({
  enter: { opacity: 1 },
  exit: { opacity: 0 }
});

export default ({ isVisible }) => (
  <PoseGroup>
    {isVisible ? <Menu /> : null}
  </PoseGroup>
)
<CodeSandbox height="500" id="lx6k64453l" />