Posts by Carlos Eduardo • 1 point
3 posts
-
0
votes1
answer248
viewsA: Styling components in React
shows your directory, the Header css in the same directory as the Header component? missing put tbm the Return, left the correct example import React from 'react'; import './styles.css'; const…
-
0
votes2
answers438
viewsA: Route mapping does not work in ASP.NET Core 2.2
The Controller and the Views are missing, I suggest you create another project. And then you configure the controller to render the pages you want
-
0
votes2
answers112
viewsA: How to add a built-in view to an Asp.net core 2.0 controller
Just create a class in the controller folder and place the page you want to render: public class HomeController : Controller { public IActionResult Home() { return View(); } }…