import { LinkButton, Stack } from '@grafana/ui'; import { createSuccessNotification } from '../../../core/copy/appNotification'; import { HOME_ROUTE } from '../shared'; export function createBookmarkSavedNotification() { const notification = createSuccessNotification('Bookmark created'); notification.component = (
You can view bookmarks under Explore > Metrics
View bookmarks
); return notification; }