mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-08 21:48:18 +00:00
13 lines
309 B
TypeScript
13 lines
309 B
TypeScript
import FeaturePlaceholder from "@/components/FeaturePlaceholder";
|
|
|
|
const NewCustomerPage = () => {
|
|
return (
|
|
<FeaturePlaceholder
|
|
title="Create Customer"
|
|
description="Register a new freight customer and prepare the account for operational use."
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default NewCustomerPage;
|