mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 08:51:27 +08:00
14 lines
293 B
C#
14 lines
293 B
C#
using System;
|
|
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
|
|
namespace AntDesign
|
|
{
|
|
[EventHandler("onmouseleave", typeof(MouseEventArgs))]
|
|
[EventHandler("onmouseenter", typeof(MouseEventArgs))]
|
|
|
|
public static class EventHandlers
|
|
{
|
|
}
|
|
}
|