import type { JSX } from 'solid-js/jsx-runtime' import type { Shout } from '~/graphql/schema/core.gen' import { For, Show } from 'solid-js' import { ArticleCard } from './ArticleCard' import stylesFeed from '~/styles/views/Feed.module.scss' export const Row3 = (props: { articles: Shout[] header?: JSX.Element nodate?: boolean noAuthorLink?: boolean noauthor?: boolean }) => { return ( 0}>
{props.header}
{(a) => (
)}
) }