This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Prerequisite : Import AntDesign in _Imports.server file */ | |
@using AntDesign | |
<Row> | |
<GridCol Span="12" Class="content-section"> | |
<Steps Direction="vertical" Current="current"> | |
@foreach (var item in steps) | |
{ | |
<Step Title="@item.Title" Description="@item.Description" /> |