CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/admin/stats/historical-stats.tsx
Views: 687
1
/*
2
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
7
import { A, Icon } from "../../components";
8
9
// This is a URL only visible to certain users of https://cocalc.com!
10
const STATS_URL =
11
"https://cocalc.com/7561f68d-3d97-4530-b97e-68af2fb4ed13/raw/stats.html";
12
13
export const HistoricalStats: React.FC = () => {
14
return (
15
<span>
16
<Icon name="line-chart" style={{ width: "1.125em" }} />{" "}
17
<A href={STATS_URL}>Historical Usage Statistics...</A>
18
</span>
19
);
20
};
21
22