InfoDetails.js 488 Bytes
Newer Older
YoonDongMin's avatar
DongM    
YoonDongMin committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import React from 'react';
import { StyleSheet, View, Text, Button } from 'react-native';
import { globalStyles } from '../styles/global';




export default function InfoDetails({ route, navigation }) {


    return (
        <View style={globalStyles.container}>
            <Text>{route.params?.date}</Text>
            <Text>{route.params?.person}</Text>
            <Text>{route.params?.money}</Text>
            <Text>{route.params?.remained_money}</Text>
        </View>
    )
}