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