ant-design-blazor/components/tabs/TabPosition.cs
Henry.zhang f9b615c2ca feat: add more demos (#197)
...for affix,back-top,breadcrumb,card,divider,typogragpy and timeline

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-06-07 19:41:00 +08:00

16 lines
367 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AntDesign
{
public static class TabPosition
{
public const string Top = "top";
public const string Right = "right";
public const string Bottom = "bottom";
public const string Left = "left";
}
}