Untitled

 avatar
FadadOussama
plain_text
5 months ago
288 B
1
Indexable
@for (step of userGuideSteps; track step.id) {
				<div class="option-item mb-3" [id]="step.id">
					<div class="img-container">
						<img [src]="'assets/user/images/' + step.image" [alt]="step.title" />
					</div>
					<h3 class="option-text">{{ step.title }}</h3>
				</div>
}
Leave a Comment