mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 21:47:38 +08:00
73c405d70d
* refactor: carousel demo * fix: remove the ItemGroup from doc projects * refactor: grid deom * fix: remove itemgroup from project file antdesign.docs.csproject * refactor: remove ant prefix Co-authored-by: ElderJames <shunjiey@hotmail.com>
15 lines
287 B
C#
15 lines
287 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public static class CarouselEffect
|
|
{
|
|
public const string ScrollX = "scrollx";
|
|
public const string Fade = "fade";
|
|
}
|
|
}
|