mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
19 lines
464 B
TypeScript
19 lines
464 B
TypeScript
import { Logo } from "ui/components/display/Logo";
|
|
import { Link } from "ui/components/wouter/Link";
|
|
import { Auth } from "ui/elements";
|
|
import { useBrowserTitle } from "ui/hooks/use-browser-title";
|
|
|
|
export function AuthLogin() {
|
|
useBrowserTitle(["Login"]);
|
|
return (
|
|
<Auth.Screen
|
|
action="login"
|
|
logo={
|
|
<Link href={"/"} className="link">
|
|
<Logo scale={0.25} />
|
|
</Link>
|
|
}
|
|
/>
|
|
);
|
|
}
|