Can a ion virtual scroll be nested in a ion virtual scroll

<ion-virtual-scroll [items]="fakeFiles" approxItemHeight="52px">
  <div *virtualItem="let files">
    <ion-virtual-scroll [items]="files.items">
           Items
    </ion-virtual-scroll>
  </div>
</ion-virtual-scroll>

the above code wouldnt work… so its is a rough representation that I want the result to achieve
So the JSON Object would be

[
    {
       "date": "XX-XX-XXXX"
       "items" [ {Object object}, {Object object}] 
    },
    {
       "date": "XX-XX-XXXX"
       "items" [ {Object object}, {Object object}]
     }
]

Any ideas would be appreciated…

did you find anything about it?