JSFiddle - React, Tailwind, and code Playground

JavaScript

routes.MapRoute(
    "Blog-Year-Month", // Route name
    "{year}/{month}", // URL with parameters
    new { controller = "Blog", action = "PostYearMonth" }, // Parameter defaults
    new { year = @"\d{4}", month = @"\d{2}" }
);