23 lines
506 B
JavaScript
Raw Normal View History

import React from "react";
import { nip19 } from "nostr-tools";
2024-04-22 19:09:46 -05:00
const ZapForm = ({ event }) => {
const nAddress = nip19.naddrEncode({
kind: event?.kind,
pubkey: event?.pubkey,
identifier: event.d,
})
2024-04-22 19:09:46 -05:00
return (
<iframe
src={`https://zapper.nostrapps.org/zap?id=${nAddress}`}
width="100%"
height="100%"
style={{ border: 'none' }}
title="zapper app"
></iframe>
2024-04-22 19:09:46 -05:00
);
};
export default ZapForm;