mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 12:07:44 +08:00
d68a2dbb87
* feat: add page-header components * feat: add page-header components * feat: add page-header components * docs: some bugs of PageHeader * refactor: clean code * feat: add Descriptions component * feat: add Descriptions component * feat: add Descriptions component * feat: add Descriptions component * feat: add Descriptions component * fix: demo Co-authored-by: ElderJames <shunjiey@hotmail.com>
14 lines
257 B
C#
14 lines
257 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public static class DescriptionsLayout
|
|
{
|
|
public const string Horizontal = "horizontal";
|
|
public const string Vertical = "vertical";
|
|
|
|
}
|
|
}
|