mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 23:40:56 +00:00
13 lines
333 B
TypeScript
13 lines
333 B
TypeScript
import FeaturePlaceholder from "@/components/FeaturePlaceholder";
|
|
|
|
const ConsignmentDetailPage = () => {
|
|
return (
|
|
<FeaturePlaceholder
|
|
title="Consignment Detail"
|
|
description="Review cargo information, routing context, and operational actions for a consignment."
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default ConsignmentDetailPage;
|