UNPKG

reactors

Version:

View components and APIs that work web, mobile and desktop!

14 lines (11 loc) 384 B
import React, {PureComponent} from 'react'; import {Animated} from 'react-native'; import Reactors from '../../Core'; import View from '../../../Component/View'; export default class ReactorsAnimatedViewMobile extends PureComponent { static Value = Animated.Value; static timing = Animated.timing; render = () => ( <Animated.View {...Reactors.props(this.props)} /> ); }