import React from 'react' import { StyleSheet, ViewStyle } from 'react-native' import AccountNumber from 'src/components/AccountNumber' import Card from 'src/components/Card' interface Props { address: string style?: ViewStyle } export default function AccountNumberCard({ address, style }: Props) { return ( ) } const styles = StyleSheet.create({ container: { justifyContent: 'center', }, })