Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/editors/unknown/register.ts
5834 views
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 { register_file_editor } from "../../project-file";
7
8
register_file_editor({
9
ext: [""],
10
icon: "question-circle",
11
componentAsync: async () => (await import("./editor")).UnknownEditor,
12
});
13
14