From ae52b27009977bfbe6beb85fb321b0e37c4a7628 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Mon, 10 Jul 2017 21:53:55 +0700 Subject: [PATCH] Don't use div inside p --- plugins/talk-plugin-featured/client/components/TabPane.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/talk-plugin-featured/client/components/TabPane.js b/plugins/talk-plugin-featured/client/components/TabPane.js index 7e6f5834b..54ac013e6 100644 --- a/plugins/talk-plugin-featured/client/components/TabPane.js +++ b/plugins/talk-plugin-featured/client/components/TabPane.js @@ -3,12 +3,13 @@ import React from 'react'; export default ({asset: {recentComments}}) => (
{recentComments.map((comment) => ( -

+

{comment.user.username}
{comment.body}
-

+
+
))}
);