import type { PopupProps } from '../../_shared/Popup' import { clsx } from 'clsx' import { createEffect, createSignal, Show } from 'solid-js' import { useLocalize } from '../../../context/localize' import { showModal } from '../../../stores/ui' import { InviteCoAuthorsModal } from '../../_shared/InviteCoAuthorsModal' import { Popup } from '../../_shared/Popup' import { SoonChip } from '../../_shared/SoonChip' import styles from './FeedArticlePopup.module.scss' type FeedArticlePopupProps = { title: string imageUrl: string isOwner: boolean description: string } & Omit export const FeedArticlePopup = (props: FeedArticlePopupProps) => { const { t } = useLocalize() return ( <> ) }