8 lines
No EOL
352 B
TypeScript
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 }; |