refactor: rename folder

This commit is contained in:
Riccardo
2024-07-07 22:01:55 +02:00
parent be3bd7993f
commit c570cc4d87
2 changed files with 3 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
'use client';
export default function SingleCustomerForm({
params
}: {
params: { id: string };
}) {
return <div>Module {params.id}</div>;
}