One way is to create a view for each list. Call them from the main as below.
Initial View:
<Page title="2 Lists">
<content>
<mvc:XMLView viewName="TestForm.view.view1" height="50%"></mvc:XMLView>
<mvc:XMLView viewName="TestForm.view.view2" height="50%"></mvc:XMLView>
</content>
</Page>
View1 & View2 sample code like below to display your list:
<App height="100%">
<Page>
<List items="{fruits>/}">
<items>
<StandardListItem title="{fruits>name}">
</StandardListItem>
</items>
</List>
</Page>
</App>