Roughly empty starting point for Webpack demo

This commit is contained in:
SteveSandersonMS
2016-02-11 12:12:02 -08:00
parent 9b245c032b
commit 778e6402d5
14 changed files with 430 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNet.Mvc;
namespace Webpack.Controllers
{
public class HomeController : Controller
{
public IActionResult Index()
{
return View();
}
}
}