Is it possible to build a razor component with
<GridColumns>
<GridColumn>
<NavLink rel='nofollow' href="@($"product/{Product.ProductId}")">
@Product.ProductName
</NavLink>
</GridColumn>
<GridColumn>@Product.ManufacturerName</GridColumn>
<GridColumn>@Product.SubCategory</GridColumn>
</GridColumns>
with Parameters and EventCallBacks and use it in the <SFGrid><SFGrid> component.
It is to replace an existing component which was part of a HTML Table element
<tr>
<td>
<NavLink rel='nofollow' href="@($"product/{Product.ProductId}")">
@Product.ProductName
</NavLink>
</td>
<td>@Product.ManufacturerName</td>
<td>@Product.SubCategory</td>
</tr>
Please provide an example if possible