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/subscription-manager.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
Manage subscriptions for a given user.
8
9
This can be used to create and modify trial subscriptions, etc.
10
*/
11
12
import { Component } from "../app-framework";
13
14
export class SubscriptionManager extends Component {
15
render() {
16
return (
17
<div>
18
<h4>Subscription Manager</h4>
19
Not yet implemented. This will make it easy for admins to make trials
20
for specific users...
21
</div>
22
);
23
}
24
}
25
26