import { For, JSXElement, Show, createResource, createSignal, useContext, } from "solid-js"; import { getComments } from "../Util/api"; import { CommentSegment } from "./Comment"; export function CommentSection({ postId }: { postId: string }): JSXElement { const [comments] = createResource(postId, () => getComments(postId, 0, 10)); return ( {(comment) => } ); }