My Application Structure
Client Module - Material Tab
- Tab 1 - Customer Table View
- Tab 2 - Edit Customer View
<mat-tab-group>
<mat-tab label="View">
<div>
<app-customer-table></app-customer-table>
</div>
</mat-tab>
<mat-tab label="Edit">
<div>
<app-customer-create></app-customer-create>
</div>
</mat-tab>
</mat-tab-group>
When the "edit" icon within Tab 1 is clicked, I aim to transition to Tab 2 and transmit my "customer:CustomerDTO" data.
What steps should I take to accomplish this?