Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/components/sso/index.tsx
1450 views
1
/*
2
* This file is part of CoCalc: Copyright © 2022 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
import Link from "next/link";
7
8
import type { JSX } from "react";
9
10
export function ssoNav(): JSX.Element[] {
11
return [
12
<Link href={"/"}>Home</Link>,
13
<Link href={"/sso"}>Single Sign On</Link>,
14
];
15
}
16
17