"use client";

import Layout from "@/Layout";
import OcSuppliers from "@/pages/OcSuppliers";

export default function SuppliersRoute(): React.ReactElement {
  return (
    <Layout currentPageName="suppliers">
      <OcSuppliers />
    </Layout>
  );
}
