8 lines
No EOL
327 B
TypeScript
8 lines
No EOL
327 B
TypeScript
import { App, AppsConfig } from "@prozilla-os/core";
|
|
import { Terminal, TerminalProps } from "./components/Terminal";
|
|
|
|
const terminal = new App<TerminalProps>("Terminal", "terminal", Terminal)
|
|
.setIconUrl("https://os.prozilla.dev/assets/apps/icons/terminal.svg")
|
|
.setRole(AppsConfig.APP_ROLES.Terminal);
|
|
|
|
export { terminal }; |