tangled
alpha
login
or
join now
stream.place
/
streamplace
Live video on the AT Protocol
74
fork
atom
overview
issues
1
pulls
pipelines
add login back
Natalie B.
1 month ago
b38bb15f
be80926b
+12
-1
1 changed file
expand all
collapse all
unified
split
js
app
src
router.tsx
+12
-1
js/app/src/router.tsx
···
26
26
} from "@streamplace/components";
27
27
import { Provider, Settings } from "components";
28
28
import AQLink from "components/aqlink";
29
29
+
import Login from "components/login/login";
29
30
import LoginModal from "components/login/login-modal";
30
31
import { AboutCategorySettings } from "components/settings/about-category-settings";
31
32
import { AccountCategorySettings } from "components/settings/account-category-settings";
···
144
145
KeyManagement: undefined;
145
146
GoLive: undefined;
146
147
LiveDashboard: undefined;
148
148
+
Login: undefined;
147
149
AVSync: undefined;
148
150
AppReturn: { scheme: string };
149
151
About: undefined;
···
197
199
KeyManagement: "key-management",
198
200
GoLive: "golive",
199
201
LiveDashboard: "live",
202
202
+
Login: "login",
200
203
AVSync: "sync-test",
201
204
AppReturn: "app-return/:scheme",
202
205
About: "about",
···
733
736
drawerItemStyle: { display: "none" },
734
737
}}
735
738
/>
736
736
-
739
739
+
<Drawer.Screen
740
740
+
name="Login"
741
741
+
component={Login}
742
742
+
options={{
743
743
+
drawerLabel: () => null,
744
744
+
drawerItemStyle: { display: "none" },
745
745
+
headerShown: false,
746
746
+
}}
747
747
+
/>
737
748
<Drawer.Screen
738
749
name="PopoutChat"
739
750
component={PopoutChat}