Files
community-rule/app/(dev)/layout.tsx
T
2026-04-18 14:12:49 -06:00

8 lines
314 B
TypeScript

import type { ReactNode } from "react";
// Development-only previews (e.g. `/components-preview`) — no public chrome.
// Routes here are gated by NODE_ENV checks at the page level.
export default function DevLayout({ children }: { children: ReactNode }) {
return <main className="flex-1">{children}</main>;
}