static void Main(string[] args) { AppRedux.Init(); AppRedux.Dispatch <Prompts.Actions.PromptUser>(); Console.ReadKey(); }
static async Task MainAsync() { AppRedux.Init(); await AppRedux.DispatchAsync <Store.Prompt.Actions.Display, string>("Fetch data from URL:"); Console.ReadKey(); }