import { apps } from "@/webapp" import { Thread } from "@/shell" export default function () { const state = Thread.getStore() if (!state) return { error: "no state" } return { html: apps().map(app => app === state.project ? `${app}` : app).join(" ") } }