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/billing/faq.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
import { Component, Rendered } from "../app-framework";
7
import { A } from "@cocalc/frontend/components";
8
9
export class FAQ extends Component {
10
public render(): Rendered {
11
return (
12
<div>
13
<a id="faq" />
14
<ul style={{ paddingLeft: "20px" }}>
15
<li>
16
<A href={"https://doc.cocalc.com/billing.html"}>
17
Billing, quotas, and upgrades FAQ
18
</A>
19
</li>
20
<li>
21
<A href="https://doc.cocalc.com/project-faq.html">
22
Questions about projects
23
</A>
24
</li>
25
</ul>
26
</div>
27
);
28
}
29
}
30
31