import { createComputed, createSignal, Show, For } from 'solid-js' import type { Shout } from '../../graphql/types.gen' import { ArticleCard } from './Card' const x = [ ['12', '12'], ['8', '16'], ['16', '8'] ] export const Row2 = (props: { articles: Shout[]; isEqual?: boolean; nodate?: boolean }) => { const [y, setY] = createSignal(0) createComputed(() => setY(Math.floor(Math.random() * x.length))) return (