import { cn } from "@/lib/utils"; import { type PropsWithChildren } from "react"; export const ContentWrapper = ({ children, className, }: PropsWithChildren<{ className?: string }>) => { return (
{children}
); };