Dynamic Steps component
Main Ad
2
Add Products
3
Delivery
1import Steps from '@tempoplatform/tpds/components/steps'
2
3const currentStep = 1;
4const steps = [
5 {
6 title: 'Main Ad',
7 },
8 {
9 title: 'Add Products',
10 },
11 {
12 title: 'Delivery',
13 },
14];
15
16<Steps
17 steps={steps}
18 currentStepIndex={currentStep}
19/>