6. Add View
public IActionResult Index()
{
return View();
}@{
ViewData["Title"] = "Index";
}
<h2>Index</h2>
<p>Hello from our View Template!</p>
Last updated
public IActionResult Index()
{
return View();
}@{
ViewData["Title"] = "Index";
}
<h2>Index</h2>
<p>Hello from our View Template!</p>
Last updated