Merge pull request #69 from BlabbrApp/master

Use absolute imports for ART
This commit is contained in:
Markus Lindqvist 2017-11-20 13:12:59 +02:00 committed by GitHub
commit f1cc13c017
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,8 @@
import React from 'react';
import PropTypes from 'prop-types';
import { View, ViewPropTypes, Platform } from 'react-native';
import { Surface, Shape, Path, Group } from '../../react-native/Libraries/ART/ReactNativeART';
import { View, ViewPropTypes, Platform, ART } from 'react-native';
const { Surface, Shape, Path, Group } = ART;
import MetricsPath from 'art/metrics/path';
export default class CircularProgress extends React.Component {