import type { JSX } from 'solid-js/jsx-runtime' import { For } from 'solid-js' import type { Shout } from '../../graphql/types.gen' import { ArticleCard } from './Card' export const Row3 = (props: { articles: Shout[]; header?: JSX.Element; nodate?: boolean }) => { return (
{props.header}
{(a) => (
)}
) }