fix react include because 0.25 warnings

This commit is contained in:
Goran Gajic 2016-05-08 22:45:44 +02:00
parent 94a631949d
commit c1a99599c5
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,5 @@
import React, { View, PropTypes, Animated } from 'react-native';
import React, { PropTypes } from 'react';
import { View, Animated } from 'react-native';
import CircularProgress from './CircularProgress';
const AnimatedProgress = Animated.createAnimatedComponent(CircularProgress);

View File

@ -1,4 +1,5 @@
import React, { View, PropTypes, Platform } from 'react-native';
import React, { PropTypes } from 'react';
import { View, Platform } from 'react-native';
import { Surface, Shape, Path, Group } from '../../react-native/Libraries/ART/ReactNativeART';
import MetricsPath from 'art/metrics/path';