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/compute/cloud-filesystem/log.tsx
Views: 687
1
export default function CloudFilesystemLog({
2
id,
3
style,
4
}: {
5
id: number;
6
style?;
7
}) {
8
console.log(id);
9
return <div style={{ color: "#666", ...style }}>Log</div>;
10
}
11
12