2023-03-19 17:57:55 +00:00
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2017-10-22 19:16:25 +02:00
|
|
|
|
|
|
|
|
namespace Yavsc.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class TestController: Controller
|
|
|
|
|
{
|
2019-01-30 10:23:00 +00:00
|
|
|
public IActionResult CalendarEventDateComponent()
|
|
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
public IActionResult MarkdownForms()
|
2017-10-22 19:16:25 +02:00
|
|
|
{
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-03-19 17:57:55 +00:00
|
|
|
}
|