mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 17:01:18 +08:00
12 lines
174 B
C#
12 lines
174 B
C#
|
|
namespace AntDesign
|
|
{
|
|
public class MonthPicker : DatePicker
|
|
{
|
|
public MonthPicker()
|
|
{
|
|
Picker = DatePickerType.Month;
|
|
}
|
|
}
|
|
}
|