Added customer detail page

This commit is contained in:
2026-07-18 18:33:48 -05:00
parent d15701a50b
commit 34d421719c
3 changed files with 48 additions and 1 deletions
@@ -42,7 +42,7 @@ function CustomerList() {
<Table.Td>{data.name}</Table.Td>
<Table.Td>{data.company}</Table.Td>
<Table.Td>
<Link to={`/inventory/itemDetail/${data.id}`}>Details</Link>
<Link to={`/customers/customerDetail/${data.id}`}>Details</Link>
</Table.Td>
</Table.Tr>
))}