// Show the projects on this NOSEputer. import { apps } from "app/src/webapp" import { getState } from "@/session" export default function () { const state = getState() if (!state) return { error: "no state" } return <> {apps().map(app => {app})} }