Skip to content

Instantly share code, notes, and snippets.

View prom3theu5's full-sized avatar
🏡
Working from Home

David Sekula prom3theu5

🏡
Working from Home
  • UK
  • 11:39 (UTC +01:00)
View GitHub Profile
@Gaulomatic
Gaulomatic / IReactiveEffects.cs
Last active February 3, 2023 11:03
Reactive Fluxor Middleware
using System;
using Blazor.Fluxor;
namespace Logixware.Web.Blazor.Fluxor
{
public interface IReactiveEffects
{
IObservable<IAction> Actions { get; }
}
}