ProzillaOS/packages/apps/text-editor/src/main.ts
2024-06-20 21:13:16 +02:00

8 lines
No EOL
352 B
TypeScript

import { App, AppsConfig } from "@prozilla-os/core";
import { TextEditor, TextEditorProps } from "./components/TextEditor";
const textEditor = new App<TextEditorProps>("Text Editor", "text-editor", TextEditor)
.setIconUrl("https://os.prozilla.dev/assets/apps/icons/text-editor.svg")
.setRole(AppsConfig.APP_ROLES.TextEditor);
export { textEditor };