UNPKG

react-bluesky-embed

Version:

React Bluesky Embed allows you to embed post threads, profiles, and comments in your React application when using Next.js, Create React App, Vite, and more.

7 lines (6 loc) 180 B
import { PostThreadParams } from "./api"; export type PostThreadCoreProps = { params: PostThreadParams; onError?(error: any): any; }; export type Theme = "light" | "dark";