mirror of
https://github.com/gre/gl-react.git
synced 2026-01-25 16:43:36 +00:00
14 lines
273 B
JavaScript
14 lines
273 B
JavaScript
//@flow
|
|
import React from "react";
|
|
import { StackNavigator } from "react-navigation";
|
|
import routes from "./routes";
|
|
|
|
export default StackNavigator(routes, {
|
|
navigationOptions: {
|
|
headerStyle: {
|
|
backgroundColor: "#e24"
|
|
},
|
|
headerTintColor: "#fff"
|
|
}
|
|
});
|