import VendorList from "@/components/vendors/vendor-list";
import { Metadata } from "next";
import VendorContent from "./content";
export const metadata: Metadata = {
  title: "vendor",
};

export default async function Vendors() {
  return (
    <>
      <VendorContent />
    </>
  );
}
