Files
erp-nutzfahrzeuge/frontend/app/[locale]/fahrzeuge/[id]/page.tsx
T

15 lines
335 B
TypeScript
Raw Normal View History

import { VehicleDetail } from '@/components/vehicles/VehicleDetail';
export default async function FahrzeugDetailPage({
params,
}: {
params: Promise<{ locale: string; id: string }>;
}) {
const { id } = await params;
return (
<div className="max-w-4xl mx-auto p-6">
<VehicleDetail vehicleId={id} />
</div>
);
}