Path: blob/master/src/packages/frontend/billing/faq.tsx
1503 views
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { Component, Rendered } from "../app-framework";6import { A } from "@cocalc/frontend/components";78export class FAQ extends Component {9public render(): Rendered {10return (11<div>12<a id="faq" />13<ul style={{ paddingLeft: "20px" }}>14<li>15<A href={"https://doc.cocalc.com/billing.html"}>16Billing, quotas, and upgrades FAQ17</A>18</li>19<li>20<A href="https://doc.cocalc.com/project-faq.html">21Questions about projects22</A>23</li>24</ul>25</div>26);27}28}293031