BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<TabComponent heightAdjustMode="Auto" id="tabelement">
<TabItemsDirective>
<TabItemDirective header={headertext[0]}
content={contentTemplate1} />
<TabItemDirective header={headertext[1]}
content={contentTemplate2} />
</TabItemsDirective>
</TabComponent>
// give the store component to your Tab item content template function
function contentTemplate1() {
return (
<Provider store={store}>
<App />
</Provider>
);
}
function contentTemplate2() {
return <CalendarComponent />;
} |