Files

15 lines
335 B
TypeScript
Raw Permalink 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>
);
}