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

11 lines
297 B
TypeScript
Raw Normal View History

import { VehicleForm } from '@/components/vehicles/VehicleForm';
export default function NeuesFahrzeugPage() {
return (
<div className="max-w-2xl mx-auto p-6">
<h1 className="text-2xl font-bold text-text mb-6">Neues Fahrzeug</h1>
<VehicleForm mode="create" />
</div>
);
}