DetailInfo.js 422 Bytes
Newer Older
Choi Ga Young's avatar
Choi Ga Young committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from 'react';
import { View, Text, StyleSheet } from 'react-native';

const DetailInfo =() =>{
  return(
    <View>
      <Text style={style.Font}>여기는 디테일 스크린</Text>
      <Text>날짜를 선택하면 세부적인 수입/지출 내역을   있는 화면 입니다.</Text>
    </View>
  )
}
const style = StyleSheet.create({
  Font: {
    fontSize:24
  }
});

export default DetailInfo;