15 lines
459 B
TypeScript
15 lines
459 B
TypeScript
import { AdjustmentReasonsClient } from "@/components/master-data/adjustment-reasons-client";
|
|
import { AppShell } from "@/components/layout/app-shell";
|
|
|
|
export default async function AdjustmentReasonsPage() {
|
|
return (
|
|
<AppShell
|
|
pathname="/adjustment-reasons"
|
|
title="Alasan Penyesuaian"
|
|
description="Master alasan untuk penyesuaian, penyusutan, kehilangan, dan kerusakan."
|
|
>
|
|
<AdjustmentReasonsClient />
|
|
</AppShell>
|
|
);
|
|
}
|