import {Breadcrumbs} from 'sentry/components/breadcrumbs'; import {Button} from 'sentry/components/button'; import ButtonBar from 'sentry/components/buttonBar'; import {FeatureFeedback} from 'sentry/components/featureFeedback'; import * as Layout from 'sentry/components/layouts/thirds'; import type {LinkProps} from 'sentry/components/links/link'; import {t} from 'sentry/locale'; import type {DashboardDetails} from '../types'; interface Props { dashboardTitle: DashboardDetails['title']; goBackLocation: LinkProps['to']; orgSlug: string; } export function Header({orgSlug, goBackLocation, dashboardTitle}: Props) { return ( ); }