Analy.js 297 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
import React from 'react';
import { View, Text, StyleSheet } from 'react-native';

const Analy =() =>{
  return(
    <View>
      <Text style={style.Font}>여기는 분석 페이지</Text>
    </View>
  )
}
const style = StyleSheet.create({
  Font: {
    fontSize:24
  }
});

export default Analy;