import { h, Component } from 'preact'; import { NODE_ID } from 'common/constants'; import Comment from 'components/comment'; export default class ListComments extends Component { render({ comments = [] }, state) { return (
{ comments.map(comment => ( )) }
); } }