import React from "react";
import { cn } from "@/lib/utils";

interface PropertyRequestsSectionProps {
  children: React.ReactNode;
  classNames?: string;
  more?: boolean;
}

const PropertyRequestsSection: React.FC<PropertyRequestsSectionProps> = ({ children, classNames, more = true }) => {
  return (
    <div className={cn("container mx-auto", classNames)}>
      <div className="grid gap-5 grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 justify-items-center">
        {children}
      </div>
    </div>
  );
};

export default PropertyRequestsSection;
