Skip to content

Instantly share code, notes, and snippets.

@jdeagle
Forked from markdalgleish/MyComponent.js
Created March 27, 2016 16:55
Show Gist options
  • Save jdeagle/491c386f60263e6fbac0 to your computer and use it in GitHub Desktop.
Save jdeagle/491c386f60263e6fbac0 to your computer and use it in GitHub Desktop.
CSS Modules + ReactCSSTransitionGroup in React 0.14
import transitions from './transitions.css';
export default () => (
<ReactCSSTransitionGroup transitionName={transitions}>
{ ... }
</ReactCSSTransitionGroup>
);
.enter { ... }
.enterActive { ... }
.leave { ... }
.leaveActive { ... }
.appear { ... }
.appearActive { ... }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment