Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/components/share/license.tsx
1450 views
1
/*
2
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
interface Props {
7
license: string;
8
}
9
export default function License({ license }: Props) {
10
// TODO: make this more useful later...
11
return <span>{license ? license.toUpperCase() : "none"}</span>;
12
}
13
14