Skip to content

Commit

Permalink
update react-native d-a-n#2
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrea committed Dec 14, 2016
1 parent 4d0449d commit 0ab5e7c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions AddressBar.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
'use strict';

import React from 'react-native';
var {
import React from 'react';
import {
TextInput,
View,
} = React;
} from 'react-native'

import BaseComponent from './BaseComponent'
import Utils from './Utils'
Expand Down
2 changes: 1 addition & 1 deletion BaseComponent.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

import React from 'react-native';
import React from 'react';

export default class BaseComponent extends React.Component {
_bind(...methods) {
Expand Down
6 changes: 3 additions & 3 deletions Button.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

var React = require('react-native');
var {
var React = require('react');
import {
View,
TouchableOpacity,
StyleSheet,
Expand All @@ -11,7 +11,7 @@ var {
TouchableNativeFeedback,
Platform,
Component
} = React;
} from 'react-native';

const IS_ANDROID = Platform.OS === 'android';

Expand Down
2 changes: 1 addition & 1 deletion StatusBar.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

import React from 'react-native';
import React from 'react';
var {
TextInput,
View,
Expand Down
6 changes: 3 additions & 3 deletions Toolbar.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
'use strict';

import React from 'react-native';
var {
import React from 'react';
import {
View,
Image,
TouchableOpacity
} = React;
} from 'react-native';

import BaseComponent from './BaseComponent'
import Button from './Button'
Expand Down

0 comments on commit 0ab5e7c

Please sign in to comment.