Can we add Tabs in Accordion layout?

Hello everyone, I am new to the panel and have a question about whether we can add the Tabs widget to the Accordion layout. Will be helpful, if someone can provide a working example.

Thanks you

Yes, it’s doable

import panel as pn
pn.extension()

pn.Accordion(pn.Tabs(1, 2, 3))

Thanks @ahuang11, I will try this