Routing ready

This commit is contained in:
Federico Kereki
2018-09-13 21:23:38 -03:00
parent c4f6b0b629
commit d94877aba7
9 changed files with 377 additions and 186 deletions
+19
View File
@@ -0,0 +1,19 @@
/* @flow */
import React from "react";
import { StatusBar } from "react-native";
import { MyDrawer } from "./src/routingApp/drawer";
class App extends React.Component {
render() {
return (
<React.Fragment>
<StatusBar hidden />
<MyDrawer />
</React.Fragment>
);
}
}
export default App;