/** @jsx createElement */ import { createElement, FunctionComponent } from 'preact'; import { NODE_ID } from '@app/common/constants'; import { Comment as CommentType } from '@app/common/types'; import { Comment } from '@app/components/comment'; export const ListComments: FunctionComponent<{ comments: CommentType[] }> = ({ comments = [] }) => (
{comments.map(comment => ( ))}
);