Skip to content

Commit

Permalink
Merge pull request #522 from sylvainbaronnet/master
Browse files Browse the repository at this point in the history
Remove unused import
  • Loading branch information
aksonov committed Apr 17, 2016
2 parents 1463030 + 8805aa1 commit db5fad6
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 11 deletions.
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import getInitialState from './src/State';
import Reducer from './src/Reducer';
import TabBar from './src/TabBar';
import Modal from './src/Modal';

import DefaultRenderer from './src/DefaultRenderer';
import Switch from './src/Switch';

Expand Down
2 changes: 1 addition & 1 deletion src/Actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class Actions {
}

create(scene:Scene){
assert(scene, "roote scene should be defined");
assert(scene, "root scene should be defined");
let refs = {};
this.iterate(scene, {}, refs);
return refs
Expand Down
5 changes: 1 addition & 4 deletions src/DefaultRenderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,13 @@
* LICENSE file in the root directory of this source tree.
*
*/
import React, {Component, Animated, PropTypes, StyleSheet, ScrollView, View, Text, NavigationExperimental} from "react-native";
import React, {Component, Animated, PropTypes, StyleSheet, View, NavigationExperimental} from "react-native";
const {
AnimatedView: NavigationAnimatedView,
Card: NavigationCard,
RootContainer: NavigationRootContainer,
Header: NavigationHeader,
} = NavigationExperimental;
import Actions from "./Actions";
import getInitialState from "./State";
import Reducer from "./Reducer";
import TabBar from "./TabBar";
import NavBar from "./NavBar";

Expand Down
2 changes: 1 addition & 1 deletion src/Router.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* LICENSE file in the root directory of this source tree.
*
*/
import React, {Component, StyleSheet, ScrollView, Text, NavigationExperimental} from "react-native";
import React, {Component, NavigationExperimental} from "react-native";
const {
AnimatedView: NavigationAnimatedView,
Card: NavigationCard,
Expand Down
2 changes: 1 addition & 1 deletion src/Scene.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* LICENSE file in the root directory of this source tree.
*
*/
import React, {Text, Component} from "react-native";
import React, {Component} from "react-native";

export default class extends Component {
render(){
Expand Down
2 changes: 1 addition & 1 deletion src/Schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* LICENSE file in the root directory of this source tree.
*
*/
import React, {Text, Component} from "react-native";
import React, {Component} from "react-native";

export default class extends Component {
render(){
Expand Down
3 changes: 1 addition & 2 deletions src/TabBar.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import React, {View, Text, Component, NavigationExperimental} from "react-native";
import React, {View, Component, NavigationExperimental} from "react-native";
import Tabs from "react-native-tabs";
import DefaultRenderer from "./DefaultRenderer";
import Actions from "./Actions";
import NavBar from "./NavBar";
const {
AnimatedView: NavigationAnimatedView,
CardStack: NavigationCardStack,
Expand Down

0 comments on commit db5fad6

Please sign in to comment.