Skip to content

Commit

Permalink
refactor: Update imports to use new packages
Browse files Browse the repository at this point in the history
  • Loading branch information
James Priest committed Jun 9, 2019
1 parent efa24ff commit 0874daa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion App.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import thunk from 'redux-thunk';
import logger from 'redux-logger';
import { Provider } from 'react-redux';
import reducer from './reducers/index';
import { Constants } from 'expo';
import Constants from 'expo-constants';
import AppNavigator from './navigation/AppNavigator';

const store = createStore(
Expand Down
2 changes: 1 addition & 1 deletion components/Quiz.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { Constants } from 'expo';
import Constants from 'expo-constants';
import Quiz_Android from './Quiz_Android';
import Quiz_iOS from './Quiz_iOS';

Expand Down
2 changes: 1 addition & 1 deletion navigation/MainTabNavigator.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';
import { Platform } from 'react-native';
import { Icon } from 'expo';
import * as Icon from '@expo/vector-icons';
import {
createBottomTabNavigator,
createStackNavigator
Expand Down

0 comments on commit 0874daa

Please sign in to comment.