[Solved] asp.net web api c# interface dataprovider

In your interface you have it defined as Task<IEnumerable<TabMain>> Gettabs(); but you implement it like this public async Task<IEnumerable<TabMain>> GetTabs() C# is a case sensitive language, so you need to either change your implementation method name or your interface method name. I would change the interface method name to GetTabs to go with the standard … Read more

[Solved] Deploy React app with JSON-server as backend

Before building set your “homepage” in package.json to “https://jmiguelcastellanosj.github.io/ap-m”, this will let github pages load your files properly. Also if your routing doesn’t work properly, in each of your routes add “/ap-m” in front of your path (So path=”https://stackoverflow.com/” becomes path=”/ap-m”) 1 solved Deploy React app with JSON-server as backend