Represents an instructional item that can be displayed in the welcome screen experience for new users.
 private void OnNavigateToTargetPage(InstructionItem instructionItem)
 {
     _navigationFacade.NavigateToCategoriesView();
 }
        /// <summary>
        /// Loads the state.
        /// </summary>
        public override async Task LoadState()
        {
            await base.LoadState();

            SelectedInstructionItem = null;
            SelectedInstructionItem = InstructionItems.FirstOrDefault();
        }