Trying to determine how to take advantage of Angular's toolset for a problem I'm trying to solve.
My application will be a single page application, but it will also only have one route. There is no other "state" as in URL state at all. As far as I can tell, you can take advantage of controllers and views in a 1:1 relationship with a route.
What I would like is to have Controller+View combinations for components on the page. (A component could be a widget, modal window, etc.).
Is there any way to leverage Angular in this situation?
Note: I have seen https://github.com/angular-ui/ui-router, but this still relies heavily on creating "states" of the application and tying it to a URL.