I am having a problem here,
I created a Blazor app (server side) with core 3.1, then I created a Razor class library (old razorlib) with this classlib I can create blazor comp and reuse in my blazor app < myComp >, share Css even create full Razor views like Area/MyAdmin/Pages/Page1.cshtml and use it from my Blazor app calling https://MyApp/MyAdmin/Page1, sorry for the big introduction, my problem is, how to reuse FULL Blazor componemt like a page? add in my Razor class lib a folder Pages and in there add Contact.razor and it will not be used as < Contact > from my Blazor app but I will be able to call just like https://MyApp/Contact?
can someone give me an example? Thanks!
eg.