File size: 500 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import { print } from "graphql/language/printer";
import { ContentNode, Page } from "@/gql/graphql";
import { fetchGraphQL } from "@/utils/fetchGraphQL";
import { PageQuery } from "./PageQuery";
interface TemplateProps {
node: ContentNode;
}
export default async function PageTemplate({ node }: TemplateProps) {
const { page } = await fetchGraphQL<{ page: Page }>(print(PageQuery), {
id: node.databaseId,
});
return <div dangerouslySetInnerHTML={{ __html: page?.content || "" }} />;
}
|