@using Iceshrimp.Shared.Schemas @code { [Parameter][EditorRequired] public required NoteReactionSchema Reaction { get; set; } [CascadingParameter] NoteComponent NoteComponent { get; set; } private void React() { NoteComponent.React(Reaction.Name, !Reaction.Reacted); } }