import { ShareModalLayout } from './ShareModal' import { ShareArticleView } from '../../patterns/ShareArticleView' type ShareArticleModalProps = { url: string title: string imageURL?: string author?: string site?: string description?: string publishedAt: string originalArticleUrl: string onOpenChange: (open: boolean) => void } export function ShareArticleModal( props: ShareArticleModalProps ): JSX.Element { return ( ) }