tangled
alpha
login
or
join now
whey.party
/
red-dwarf
82
fork
atom
an independent Bluesky client using Constellation, PDS Queries, and other services
reddwarf.app
frontend
spa
bluesky
reddwarf
microcosm
client
app
82
fork
atom
overview
issues
25
pulls
pipelines
allow mobile users to log out
rimar1337
4 months ago
fb3fbe80
ff2894e7
+18
-1
1 changed file
expand all
collapse all
unified
split
src
routes
settings.tsx
+18
-1
src/routes/settings.tsx
···
1
1
import { createFileRoute } from "@tanstack/react-router";
2
2
3
3
+
import { Header } from "~/components/Header";
4
4
+
import Login from "~/components/Login";
5
5
+
3
6
export const Route = createFileRoute("/settings")({
4
7
component: Settings,
5
8
});
6
9
7
10
export function Settings() {
8
8
-
return <div className="p-6">Settings page (coming soon)</div>;
11
11
+
return (
12
12
+
<>
13
13
+
<Header
14
14
+
title="Settings"
15
15
+
backButtonCallback={() => {
16
16
+
if (window.history.length > 1) {
17
17
+
window.history.back();
18
18
+
} else {
19
19
+
window.location.assign("/");
20
20
+
}
21
21
+
}}
22
22
+
/>
23
23
+
<Login />
24
24
+
</>
25
25
+
);
9
26
}