Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/components/billing/payment-methods.tsx
1450 views
1
/*
2
* This file is part of CoCalc: Copyright © 2021 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
import A from "components/misc/A";
7
8
export default function PaymentMethods() {
9
return (
10
<div>
11
<div style={{ margin: "60px", fontSize: "15pt", textAlign: "center" }}>
12
<A href="/settings/payments">Visit the payments page instead.</A>
13
</div>
14
</div>
15
);
16
}
17
18