Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. diff --git a/rn/src/navigation/index.web.js b/rn/src/navigation/index.web.js
  2. index b75d6451..c03e6060 100644
  3. --- a/rn/src/navigation/index.web.js
  4. +++ b/rn/src/navigation/index.web.js
  5. @@ -12,6 +12,7 @@ import {
  6. import { createBrowserApp } from "@react-navigation/web";
  7.  
  8. import Index from "../marketing/Index";
  9. +import TOS from "../legal/TOS";
  10.  
  11. // const authNavigator = createNavigator(SwitchView, SwitchRouter(authRoutes), {});
  12.  
  13. @@ -33,7 +34,8 @@ const mainNavigator = createNavigator(
  14. SwitchView,
  15. SwitchRouter(
  16. {
  17. - Marketing: { screen: Index, path: "" }
  18. + Marketing: { screen: Index, path: "" },
  19. + Legal: { screen: TOS, path: "/tos" }
  20. },
  21. {
  22. defaultNavigationOptions: {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement