Hi,
In the default app we have column, line, sidebar and fixed layout .
Also, there is Section with view but only in a compiled version.
I would like to create one with Tabs and in each tabs permit to the user to include other widget. I hope to use fixed layout in each tabs and declare différent state but i don't know how import another widget in a custom widget or extend it :
i try import : import Widget from 'dist/widgets/layout/fixed/src/runtime/widget';
and include it into a Tab :
<Tab
id={"Tab-"+index}
title={ onglet }
key={`${index}`}
active={index===activeTab}
>
<Widget {...props}/>
</Tab>
but i can't param it.
Some help will be welcome
thanks.
Guillaume