type Props = { children: React.ReactNode } export const ArticleTitle = ({ children }: Props) => { return (

{children}

) }