26 lines
540 B
TypeScript
26 lines
540 B
TypeScript
export const tabPageConfig: TabPageNavigationConfig = {
|
|
defaultTab: 'tab1',
|
|
tabs: [
|
|
{
|
|
id: 'tab1',
|
|
label: 'Overview',
|
|
content: <div>This is the overview content</div>,
|
|
},
|
|
{
|
|
id: 'tab2',
|
|
label: 'Details',
|
|
content: <div>This is the details content</div>,
|
|
},
|
|
{
|
|
id: 'tab3',
|
|
label: 'Settings',
|
|
content: <div>This is the settings content</div>,
|
|
},
|
|
{
|
|
id: 'tab4',
|
|
label: 'History',
|
|
content: <div>This is the history content</div>,
|
|
},
|
|
],
|
|
};
|