mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 17:31:42 +08:00
13 lines
308 B
C#
13 lines
308 B
C#
|
using Microsoft.AspNetCore.Components;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace AntDesign
|
|||
|
{
|
|||
|
public static class RenderFragmentHelper
|
|||
|
{
|
|||
|
public static RenderFragment ToRenderFragment(this string value) => builder => builder.AddContent(1, value);
|
|||
|
}
|
|||
|
}
|