5970456a54
CI / check (pull_request) Failing after 8m30s
Rename packages/ subdirectories to match their @united-workforce/* scope: cli-workflow → cli workflow-agent-builtin → agent-builtin workflow-agent-claude-code → agent-claude-code workflow-agent-hermes → agent-hermes workflow-dashboard → dashboard workflow-protocol → protocol workflow-util-agent → util-agent workflow-util → util Updated all tsconfig references, scripts, and active docs. Historical docs (docs/plans/, docs/superpowers/) left as-is. Closes #21
11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
import type { ReactNode } from "react";
|
|
import { Outlet } from "react-router";
|
|
|
|
export function Layout(): ReactNode {
|
|
return (
|
|
<div className="h-screen w-screen bg-background text-foreground">
|
|
<Outlet />
|
|
</div>
|
|
);
|
|
}
|