// components/social/NostrLoginPrompt.tsx import React, { useState } from 'react'; import { View } from 'react-native'; import { Text } from '@/components/ui/text'; import { Button } from '@/components/ui/button'; import { Zap, Key } from 'lucide-react-native'; import NostrLoginSheet from '@/components/sheets/NostrLoginSheet'; interface NostrLoginPromptProps { message: string; } export default function NostrLoginPrompt({ message }: NostrLoginPromptProps) { const [isLoginSheetOpen, setIsLoginSheetOpen] = useState(false); return ( Connect with Nostr {message} {/* NostrLoginSheet */} setIsLoginSheetOpen(false)} /> ); }