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. Commercial Alternative to JupyterHub.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/compute/cloud-filesystem/log.tsx
Views: 923
1
export default function CloudFilesystemLog({
2
style,
3
}: {
4
id: number;
5
style?;
6
}) {
7
return <div style={{ color: "#666", ...style }}>Log</div>;
8
}
9
10