import { cn } from "@/lib/utils"; import { FC, PropsWithChildren } from "react"; interface Props { className?: string; } export const Container: FC> = ({ className, children, }) => { return (
{children}
); };