{/* Header Container */}
{labelFor[currentTab]}
{[
{ value: 'channels', label: 'Channels' },
{ value: 'all', label: 'Sources' }
].map(({ value, label }) => (
{label}
))}
({
value,
label: title,
onClick: setTab(value),
selected: currentTab === value
}))}
>
{UTM_TAGS[currentTab] ? UTM_TAGS[currentTab].title : 'Campaigns'}
{/* Main Contents */}
{renderContent()}
)
}