import React, { useEffect } from 'react'; import { reportInteraction } from '@grafana/runtime/src'; import { Trans } from 'app/core/internationalization'; import { AddLibraryPanelContents } from 'app/features/library-panels/components/AddLibraryPanelModal/AddLibraryPanelModal'; import { ShareModalTabProps } from './types'; interface Props extends ShareModalTabProps { initialFolderUid?: string; } export const ShareLibraryPanel = ({ panel, initialFolderUid, onDismiss }: Props) => { useEffect(() => { reportInteraction('grafana_dashboards_library_panel_share_viewed'); }, []); if (!panel) { return null; } return ( <>

Create library panel.

); };