Esempio n. 1
0
        static void Main(string[] args)
        {
            AppRedux.Init();

            AppRedux.Dispatch <Prompts.Actions.PromptUser>();

            Console.ReadKey();
        }
Esempio n. 2
0
        static async Task MainAsync()
        {
            AppRedux.Init();

            await AppRedux.DispatchAsync <Store.Prompt.Actions.Display, string>("Fetch data from URL:");

            Console.ReadKey();
        }