16 lines
447 B
TypeScript
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" />;
|
|
}
|