We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e02bbd7 commit fe9c1a3Copy full SHA for fe9c1a3
src/app/[username]/[articleHandle]/page.tsx
@@ -16,6 +16,7 @@ import ArticleSidebar from "./_components/ArticleSidebar";
16
import ReactionStatus from "@/components/render-props/ReactionStatus";
17
import clsx from "clsx";
18
import ArticleReaction from "./_components/ArticleReaction";
19
+import { CommentSection } from "@/components/comment-section";
20
21
interface ArticlePageProps {
22
params: Promise<{
@@ -157,6 +158,8 @@ const Page: NextPage<ArticlePageProps> = async ({ params }) => {
157
158
159
<div className="mx-auto content-typography">{parsedHTML}</div>
160
</div>
161
+
162
+ <CommentSection />
163
</HomepageLayout>
164
</>
165
);
0 commit comments