File size: 731 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
import { print } from "graphql/language/printer";
import { ContentNode, Post } from "@/gql/graphql";
import { fetchGraphQL } from "@/utils/fetchGraphQL";
import styles from "./PostTemplate.module.css";
import { PostQuery } from "./PostQuery";
interface TemplateProps {
node: ContentNode;
}
export default async function PostTemplate({ node }: TemplateProps) {
const { post } = await fetchGraphQL<{ post: Post }>(print(PostQuery), {
id: node.databaseId,
});
return (
<div className={styles.post}>
<h1 className={styles.title}>{post.title}</h1>
<div className={styles.author}>By {post.author?.node.name}</div>
<div dangerouslySetInnerHTML={{ __html: post.content || "" }} />
</div>
);
}
|