CaculatedDeposit.js 232 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 import React, {Component} from 'react'; import {View, Text} from 'react-native'; const CaculatedDeposit = (props) => { return ( <View> <Text>CaculatedDeposit</Text> </View> ); }; export default CaculatedDeposit;