Private/Angular/Component/List/ClientGrid/New-NgClientGridComponentHtmlToString.ps1

Function New-NgClientGridComponentHtmlToString([WebCsprojInfo]$webCsprojInfo, [TableInfo]$tableInfo)
{
    [string]$result = @"
<h2>put title here</h2>

<div style="width: 1150px;">
    <ag-grid-angular #agGrid style="width: 100%; height: 100px;" class="ag-fresh"
                 [gridOptions]="gridOptions">
    </ag-grid-angular>
</div>
"@


    return $result
}