Building new application in Studio to familiarize myself with it. Currently it starts the application on the default page that was created. In Radzen you could set the start page by right clicking the page. Can someone point me to where the start page can be set?
You should set the route of the desired page to "/" and remove the same from Index.razor.
@page "/"
@page "Index"
Excellent thank you!
1 Like