refactor: Enhance aisle management by adding selectedAisle state and click handling in aisle components

This commit is contained in:
2025-05-30 12:19:07 +05:30
parent 84d1022432
commit 0e0a53bd5a
7 changed files with 190 additions and 82 deletions

View File

@@ -11,13 +11,13 @@ function AisleInstances() {
return (
<>
<group name='Aisles-Group'>
{aisles.map((aisle) =>
<AisleInstance aisle={aisle} key={aisle.uuid} />
)}
</>
</group>
)
}