UNPKG

@druid-sh/sdk

Version:

Druid.sh SDK for rendering blog content with SSR support

8 lines (7 loc) 226 B
import React from "react"; import { BlogPostResponse } from "../types"; interface BlogPostProps { data: BlogPostResponse; } export declare function BlogPost({ data }: BlogPostProps): Promise<React.JSX.Element>; export {};