5. 뷰 컴포넌트를 테스트할 페이지를 작성하자. Controllers 폴더에 ViewComponentDemoController.cs 파일로 컨트롤러를 추가하고 다음과 같이 코드를 입력한다.
▼ /Controllers/ViewComponentDemoController.cs
using Microsoft.AspNetCore.Mvc; namespace DotNetNote.Controllers { public class ViewComponentDemoController : Controller { public IActionResult Index() { return View(); } /// <summary> /// CopyrightViewComponent 출력 데모 /// </summary> /// <returns></returns> public IActionResult CopyrightDemo() { return View(); } } }