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 './Group.scss' interface GroupProps { articles: Shout[] header?: JSX.Element } export default (props: GroupProps) => { return (
4}>
{props.header}
{(a) => (
)}
= 4}>
{(a) => ( )}
{(a) => ( )}
) }