1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-11-28 15:53:50 -05:00

next-mdx-remote -> mdx-bundler (#729)

This commit is contained in:
2022-01-09 13:45:38 -05:00
committed by GitHub
parent b7313985db
commit 65416fcc1f
35 changed files with 1624 additions and 821 deletions

View File

@@ -0,0 +1,13 @@
import TweetEmbed from "react-tweet-embed";
const Tweet = (props: { id: string }) => (
<TweetEmbed
id={props.id}
options={{
dnt: true,
align: "center",
}}
/>
);
export default Tweet;