import { cn } from "@lib/cn" import { PropsWithChildren } from "react" export function PageWrapper({ children, className, ...props }: PropsWithChildren>) { return (
{children}
) }