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/users/activity.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 "@cocalc/frontend/app-framework";
7
8
interface Props {
9
account_id: string;
10
}
11
12
interface State {
13
activity?: any;
14
}
15
16
export class Activity extends Component<Props, State> {
17
render(): Rendered {
18
return <div>Recent Activity</div>;
19
}
20
}
21
22