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