Files
zopu-code/apps/web/src/routes/design/work-unit/page.tsx
2026-07-23 20:05:48 +05:30

16 lines
447 B
TypeScript

import { MobileFlowPage } from "@/components/mobile-workspace/mobile-flow-page";
import type { Route } from "./+types/page";
export const meta = (_args: Route.MetaArgs) => [
{ title: "Work unit | Zopu" },
{
content: "Review the state, next milestone, and activity for a work unit",
name: "description",
},
];
export default function PublicMobileWorkUnitPage() {
return <MobileFlowPage publicDemo screen="work-unit-detail" />;
}