import React from 'react'; import { AddLibraryPanelContents } from 'app/features/library-panels/components/AddLibraryPanelModal/AddLibraryPanelModal'; import { ShareModalTabProps } from './types'; interface Props extends ShareModalTabProps { initialFolderId?: number; } export const ShareLibraryPanel = ({ panel, initialFolderId, onDismiss }: Props) => { if (!panel) { return null; } return ( <>

Create library panel.

); };