import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
const DetailInfo = ({ route }) => {
console.log('route', route.params)
console.log('---------------------------')
return (
<>
수입
{route.params?.input}
수입 내역들을 보여줄 예정입니다.
지출
{route.params?.output}
지출 내역들을 보여줄 예정입니다.
>
)
}
const style = StyleSheet.create({
Font: {
fontSize: 24
}
});
export default DetailInfo;