@breeztech/react-native-breez-sdk
Version:
React Native Breez SDK
16 lines (13 loc) • 451 B
JavaScript
import React from "react"
import { Text, TouchableOpacity, View } from "react-native"
const DebugLine = ({ title, text }) => {
return (
<TouchableOpacity style={{ flex: 1 }}>
<View style={{ margin: 5 }}>
<Text style={{ fontWeight: "bold" }}>{title}</Text>
{text && text.length > 0 ? <Text>{text}</Text> : <></>}
</View>
</TouchableOpacity>
)
}
export default DebugLine