/** @jsx h */ import { h } from 'preact'; import { NODE_ID } from 'common/constants'; import Comment from 'components/comment'; const ListComments = ({ comments = [] }) => (
{comments.map(comment => ( ))}
); export default ListComments;