diff --git a/src/components/Demo.tsx b/src/components/Demo.tsx index db14595..dc54e5c 100644 --- a/src/components/Demo.tsx +++ b/src/components/Demo.tsx @@ -65,6 +65,10 @@ export default function Demo() { sdk.actions.openUrl("https://www.youtube.com/watch?v=dQw4w9WgXcQ"); }, []); + const openWarpcastUrl = useCallback(() => { + sdk.actions.openUrl("https://warpcast.com/~/compose"); + }, []); + const close = useCallback(() => { sdk.actions.close(); }, []); @@ -158,6 +162,15 @@ export default function Demo() { +
+ sdk.actions.openUrl ++