import {Fragment} from 'react'; import Button from 'sentry/components/button'; import ButtonBar from 'sentry/components/buttonBar'; import {t} from 'sentry/locale'; import {FlamegraphPreferences} from 'sentry/utils/profiling/flamegraph/flamegraphStateProvider/flamegraphPreferences'; interface FlamegraphViewSelectMenuProps { onSortingChange: (sorting: FlamegraphViewSelectMenuProps['sorting']) => void; onViewChange: (view: FlamegraphViewSelectMenuProps['view']) => void; sorting: FlamegraphPreferences['sorting']; view: FlamegraphPreferences['view']; } function FlamegraphViewSelectMenu({ view, onViewChange, sorting, onSortingChange, }: FlamegraphViewSelectMenuProps): React.ReactElement { return ( ); } export {FlamegraphViewSelectMenu};