import { useContext } from 'react'; import { ScreenContext } from '../../../contexts/screen'; import { Contained } from '../../Contained'; interface Props { subtitle: string; } export function ArticleSubtitleSection({ subtitle }: Props) { const { isDesktop } = useContext(ScreenContext); return (
{subtitle}
); }