import React from "react"; import { HStack, Text, VStack, Input } from "native-base"; import { CurrencyValue } from "@usedapp/core"; interface ExpectedOutputProps { expectedToReceive: CurrencyValue; targetChain: string; balance: CurrencyValue; } export const ExpectedOutput: React.FC = ({ expectedToReceive, targetChain, balance }) => { return ( You will receive on {targetChain.toUpperCase()} Balance: {balance.format()} ); };