import React from 'react'; import { View } from 'react-native'; import { Text } from 'react-native-paper'; import { Account } from '../types'; import styles from '../styles/stylesheet'; interface AccountDetailsProps { account: Account | undefined; } const AccountDetails: React.FC = ({ account }) => { return ( Address: {account?.address} Public Key: {account?.pubKey} HD Path: {account?.hdPath} ); }; export default AccountDetails;