mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-28 04:50:28 -04:00
14 lines
213 B
TypeScript
14 lines
213 B
TypeScript
import TweetEmbed from "react-tweet-embed";
|
|
|
|
const Tweet = (props: { id: string }) => (
|
|
<TweetEmbed
|
|
id={props.id}
|
|
options={{
|
|
dnt: true,
|
|
align: "center",
|
|
}}
|
|
/>
|
|
);
|
|
|
|
export default Tweet;
|