ant-design-blazor/components/core/Helpers/RenderFragmentHelper.cs
Alsein 82ef62b7a7 feat: add simple table component (#86)
* fix: add @commitlint/config-conventional to devDependencies

* feat: add basic table implementation

* feat: continue adding definitions

* feat: end of work in 20200414

* fix: add readonly to csssizelength

* fix: warnings from table

* fix: add ignorecase to csssizelength

* feat: refactor table

* feat: add simple table

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-05-30 01:46:41 +08:00

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);
}
}