Signal drop!
Relay (operand.online) is unreachable.
Usually, a dropped signal means an upgrade is happening. Hold on!
Sorry, no connección.
Hang in there while we get back on track
gram: essay
> ./src/DocExplorer/tools.ts
Lenses
(coming soon!)
import React from "react";
import { TinyEssayEditor } from "@/tee/components/TinyEssayEditor";
import { TLDraw } from "@/tldraw/components/TLDraw";
import { FolderViewer } from "@/folders/components/FolderViewer";
export type Tool = {
id: string;
name: string;
component: React.FC;
};
export const TOOLS = {
essay: [
{
id: "essay",
name: "Editor",
component: TinyEssayEditor,
},
],
tldraw: [
{
id: "tldraw",
name: "Drawing",
component: TLDraw,
},
],
folder: [
{
id: "folder",
name: "Folder",
component: FolderViewer,
},
],
};