I have a lengthy form in angular that I am currently working on. I'm wondering if there is a way to divide it into multiple views and then link each of them back to the main view.
<div class="container">
<div class="row" id="part1">
<div class="col-md-12">First Section</div>
</div>
<div class="row" id="part2">
<div class="col-md-12">Second Section</div>
</div>
<div class="row" id="part3">
<div class="col-md-12">Third Section</div>
</div>
...
</div>
My question is, since my file is too long, can I have each section in a separate file using Angular and then reference them all in the main file? For instance:
<div class="container>
"import section 1"
"import section 2"
"import section 3"
</div>
Thank you.