mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-29 16:28:12 +00:00
11 lines
262 B
TypeScript
11 lines
262 B
TypeScript
const DashboardPage = () => {
|
|
return (
|
|
<div className="p-6">
|
|
<h1 className="text-2xl font-semibold">EDR Freight Backoffice</h1>
|
|
<p className="mt-2 text-gray-600">Backoffice — coming soon.</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default DashboardPage;
|