You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
384 B
23 lines
384 B
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { CSSTransition } from 'react-transition-group';
|
|
|
|
const Appear = ({ duration, children }) => (
|
|
<CSSTransition
|
|
in
|
|
classNames='Appear'
|
|
timeout={duration || 1000}
|
|
appear
|
|
>
|
|
{children}
|
|
</CSSTransition>
|
|
);
|
|
|
|
Appear.propTypes =
|
|
{
|
|
duration : PropTypes.number,
|
|
children : PropTypes.any
|
|
};
|
|
|
|
export { Appear };
|