diff --git a/src/components/comment.tsx b/src/components/comment.tsx index ad81357..fda666c 100644 --- a/src/components/comment.tsx +++ b/src/components/comment.tsx @@ -1,4 +1,5 @@ import { createSignal, For, Show } from "solid-js"; +import { A } from "@solidjs/router"; import type { CommentDefinition } from "../types"; const pluralize = (n: number) => n + (n === 1 ? " reply" : " replies"); @@ -9,7 +10,7 @@ export default function Comment(props: { comment: CommentDefinition }) { return (