This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nextjs-auth0/app/customer-form/[id]/page.tsx
2024-07-07 22:01:55 +02:00

10 lines
147 B
TypeScript

'use client';
export default function SingleCustomerForm({
params
}: {
params: { id: string };
}) {
return <div>Module {params.id}</div>;
}