1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-06-30 18:06:38 -04:00
Files
jarv.is/components/TweetEmbed/TweetEmbed.tsx
2022-01-18 09:25:09 -05:00

18 lines
237 B
TypeScript

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