Files
snort/packages/app/src/Element/Embed/NostrNestsEmbed.tsx
2023-09-28 12:20:39 +03:00

6 lines
196 B
TypeScript

const NostrNestsEmbed = ({ link }: { link: string }) => (
<iframe src={link} allow="microphone" width="480" height="680" style={{ maxHeight: 680 }}></iframe>
);
export default NostrNestsEmbed;