Skip to content

Commit

Permalink
Fixed imports for 0.26
Browse files Browse the repository at this point in the history
  • Loading branch information
dcworldwide committed May 21, 2016
1 parent 42b50be commit 9299357
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
9 changes: 8 additions & 1 deletion Defaults.js
@@ -1,6 +1,13 @@
'use strict';

import React, { StyleSheet, Text, View, Image, Component} from 'react-native';
import React, {Component} from 'react';

import {
StyleSheet,
Text,
View,
Image
} from 'react-native';

class NoMoreCards extends Component {
constructor(props) {
Expand Down
12 changes: 11 additions & 1 deletion SwipeCards.js
@@ -1,7 +1,17 @@
/* Gratefully copied from https://github.com/brentvatne/react-native-animated-demo-tinder */
'use strict';

import React, { StyleSheet, Text, View, Animated, Component, PanResponder, Image} from 'react-native';
import React, {Component} from 'react';

import {
StyleSheet,
Text,
View,
Animated,
PanResponder,
Image
} from 'react-native';

import clamp from 'clamp';

import Defaults from './Defaults.js';
Expand Down

0 comments on commit 9299357

Please sign in to comment.