"use client";

import Layout from "@/Layout";
import ProductionLaborPage from "@/pages/production/ProductionLaborPage";

export default function ProductionLaborRoute(): React.ReactElement {
  return (
    <Layout currentPageName="Production">
      <ProductionLaborPage />
    </Layout>
  );
}
