mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-30 06:28:12 +00:00
13 lines
310 B
TypeScript
13 lines
310 B
TypeScript
import FeaturePlaceholder from "@/components/FeaturePlaceholder";
|
|
|
|
const BillingPage = () => {
|
|
return (
|
|
<FeaturePlaceholder
|
|
title="Billing"
|
|
description="Review invoice activity, billing exceptions, and reconciliation tasks for freight operations."
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default BillingPage;
|