import * as Layout from 'app/components/layouts/thirds'; import Link from 'app/components/links/link'; import {t} from 'app/locale'; import {Organization} from 'app/types'; type Props = { organization: Organization; activeTab: 'projects' | 'teamInsights'; }; function HeaderTabs({organization, activeTab}: Props) { return (
  • {t('Projects Overview')}
  • {t('Team Insights')}
  • ); } export default HeaderTabs;