import { For, Show } from 'solid-js' import type { Reaction } from '../../../graphql/types.gen' import { ReactionKind } from '../../../graphql/types.gen' import { Userpic } from '../../Author/Userpic' import styles from './VotersList.module.scss' import { clsx } from 'clsx' type Props = { reactions: Reaction[] fallbackMessage: string } export const VotersList = (props: Props) => { return (
) }