// @flow import React, { type AbstractComponent } from 'react'; import { type PlaceholderProps } from '../components/Placeholder'; import { Fade, collapseDuration } from './transitions'; // fade in when last multi-value removed, otherwise instant const AnimatedPlaceholder = ( WrappedComponent: AbstractComponent ): AbstractComponent => props => ( ); export default AnimatedPlaceholder;