-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from ThatNinjaGuy/develop
Develop
- Loading branch information
Showing
18 changed files
with
501 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
import React from "react"; | ||
import RestaurantTablesScreen from "@/screens/OrdersScreen/RestaurantTablesScreen"; | ||
import OrdersScreenContainer from "@/screens/OrdersScreen/OrdersScreenContainer"; | ||
import { GestureHandlerRootView } from "react-native-gesture-handler"; | ||
// import { Provider as PaperProvider } from "react-native-paper"; | ||
|
||
export default function MenuScreen() { | ||
return ( | ||
<GestureHandlerRootView style={{ flex: 1 }}> | ||
<RestaurantTablesScreen /> | ||
<OrdersScreenContainer /> | ||
</GestureHandlerRootView> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import React from "react"; | ||
import RestaurantTablesScreen from "@/screens/TablesScreen/RestaurantTablesScreen"; | ||
import { GestureHandlerRootView } from "react-native-gesture-handler"; | ||
|
||
export default function MenuScreen() { | ||
return ( | ||
<GestureHandlerRootView style={{ flex: 1 }}> | ||
<RestaurantTablesScreen /> | ||
</GestureHandlerRootView> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.