I am building my first app with Angular and need some help to get off in the right direction. I should be a single page app.
My app consists of several "pages", like for example "Products" (with a list of products), Contact (with a contact form). The "Products" page should also link to an "Edit product" page where a productId is passed from the list on "Products".
The "old school" way of doing this would be to have a products.aspx and linking to editProduct.aspx?productId=123. That is the behavior I want to mimic.
My question is if I should use Tabs as navigation or if there is a better way of doing this that is up to date with Angular 1.2.
Thanks for your help!