Skip to content

Instantly share code, notes, and snippets.

@pedronauck
Created March 14, 2018 23:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pedronauck/d39912a978994cee0827b34aed33fc3a to your computer and use it in GitHub Desktop.
Save pedronauck/d39912a978994cee0827b34aed33fc3a to your computer and use it in GitHub Desktop.
import React from 'react'
import pose from 'react-pose'
const AnimatedDiv = pose('div')({
opened: { scale: 1 },
closed: { scale: 2 },
})
export const MyComponent = ({ opened }) => (
<AnimatedDiv state="opened">
hello world
</AnimatedDiv>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment