import { h, Component } from 'preact'; import Comment from 'components/comment'; export default class Thread extends Component { render(props) { const { data: { comment, replies = [] }, mix, mods = {} } = props; return (
{ !!replies.length && replies.map(thread => ( )) }
); } }