import Breadcrumbs from 'sentry/components/breadcrumbs'; import Button from 'sentry/components/button'; import ButtonBar from 'sentry/components/buttonBar'; import EditableText from 'sentry/components/editableText'; 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 {DashboardDetails} from '../types'; interface Props { dashboardTitle: DashboardDetails['title']; goBackLocation: LinkProps['to']; onChangeTitle: (title: string) => void; orgSlug: string; title: string; } export function Header({ title, orgSlug, goBackLocation, dashboardTitle, onChangeTitle, }: Props) { return ( ); }