As someone who is still relatively new to AngularJS, I am looking for advice on how to properly structure the products section of my application.
My main product page will display all 12 products with clickable links to individual product pages. Each individual product page will contain the same data format, such as product description, color, and height. This information will not be retrieved from a backend source, but instead will be plain HTML.
What is the best way to organize this in order to maximize code reuse? I am considering using the following routing setup - /products/products.html
for listing all products, and then /products/product1.html
for each individual product page.
Could someone offer insights on how to implement this effectively in AngularJS?
Thank you in advance!