React to rename of Page() -> View()

This commit is contained in:
Ryan Nowak 2017-04-27 11:15:33 -07:00
parent 524ab35a59
commit 22b9d7647e
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ namespace RazorPagesApp
public IActionResult OnGet(string person)
{
Name = person;
return View();
return Page();
}
}
}