import React from 'react'; import PropTypes from 'prop-types'; import { CSSTransition } from 'react-transition-group'; const Appear = ({ duration, children }) => ( {children} ); Appear.propTypes = { duration : PropTypes.number, children : PropTypes.any }; export { Appear };