ant-design-blazor/components/time-picker/TimePicker.cs
2020-05-29 00:33:49 +08:00

12 lines
171 B
C#

namespace AntDesign
{
public class TimePicker : DatePicker
{
public TimePicker()
{
Picker = DatePickerType.Time;
}
}
}