I am new to Angular JS...our screen layout is divided into 4 sections..
<table>
<tr>
<td>Section 1</td>
<td>Section 2</td>
<td>Section 3</td>
</tr>
<tr>
<td colspan="3">section 4 - main content</td>
</tr>
</table>
What is the best way to do it ? Define them as individual views ? and use ng-include tag ? Define a div and attach a controller and include respective code...I am looking for options to seperate the HTML code for each section into it;s own HTML. Any help would be greatly appreciated.