Files
snort/packages/app/src/Element/NostrNestsEmbed.tsx
Sam Samskies 4325c49435 add Nostr Nests embed (#377)
* add Nostr Nests embed

* remove wildcard

* fix import to match import convention

* always show link, but hide iframe when necessary
2023-03-03 11:05:10 -08: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;