great-agent/apps/web/src/app/app-shell.ts
2026-08-12 15:18:51 +08:00

12 lines
266 B
TypeScript

import van from "vanjs-core";
const { h1, main, p } = van.tags;
export function AppShell(): HTMLElement {
return main(
{ class: "app-shell" },
h1("Great Agent 2"),
p("项目骨架运行正常,产品界面将在纵向功能阶段实现。"),
);
}