export const tabPageConfig: TabPageNavigationConfig = {
defaultTab: 'tab1',
tabs: [
{
id: 'tab1',
label: 'Overview',
content:
This is the overview content
,
},
{
id: 'tab2',
label: 'Details',
content: This is the details content
,
},
{
id: 'tab3',
label: 'Settings',
content: This is the settings content
,
},
{
id: 'tab4',
label: 'History',
content: This is the history content
,
},
],
};