// @flow import React, { type AbstractComponent } from 'react'; import { type SingleValueProps } from '../components/SingleValue'; import { Fade } from './transitions'; // instant fade; all transition-group children must be transitions const AnimatedSingleValue = ( WrappedComponent: AbstractComponent ): AbstractComponent => props => ( ); export default AnimatedSingleValue;