Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Commit

Permalink
Move Pages into standalone files
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptronicek committed Sep 14, 2020
1 parent b47e1fb commit edb4983
Show file tree
Hide file tree
Showing 6 changed files with 530 additions and 484 deletions.
5 changes: 4 additions & 1 deletion App.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";

/* Pages */
import { HomeScreen, QRScreen, SendScreen, SettingsPage } from "./Pages.js";
import { SendScreen } from "./pages/SendScreen";
import { QRScreen } from "./pages/QRScreen";
import { HomeScreen } from "./pages/HomeScreen";
import { SettingsPage } from "./pages/SettingsPage";

/* App component */

Expand Down
Loading

0 comments on commit edb4983

Please sign in to comment.