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.
1 lines • 281 B
JavaScript
import{jsx as _jsx}from"react/jsx-runtime";import{Post}from"./post.js";import"../main.css";export const EmbeddedPostThread=({postThread,theme="light",hidePost})=>{const thread=postThread;return /*#__PURE__*/_jsx(Post,{theme:theme,thread:thread,hidePost:hidePost},thread.post.uri)};