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