如何在 onsen-ui 中将一个列表添加到另一个列表?

How do you add a list to another list in onsen-ui?

我正在使用反应版本的温泉-ui。有没有好的方法可以将一个列表添加到另一个列表中?我正在寻找类似 jQueryMobile 的 collapsible/accordion 列表。

以防别人好奇,其实也没什么大不了的。

伪代码(注意,父ListItem上没有tappable):

<List
  <ListItem>
    Category name
    <List className="childList"
      <ListItem tappable>Item name</ListItem>
    />
>

CSS:

.list.childList {
    width: 100%;
    border: 0;
}

在 Android 上看起来像这样:

在 iOS 上看起来像这样: