
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
엑스포에 아무것도 안뜹니다.. 뭔가 연결이 안된걸까여

import React from 'react'
import {View,Text} from 'react-native'
export default function AboutPage(){
return (
<View>
<Text>어바웃페이지</Text>
</View>
)
}
const styles = StyleSheet.create(
{
bgColor:{
backgroundColor:'navy'
},
topText:{
color:'white',
fontWeight: '700',
textAlign: 'center',
},
middleBox:
{
backgroundColor:'white',
borderRadius:'30',
padding:'20',
margin: '20',
},
middleText1:
{
color:'black',
fontWeight: '400',
textAlign: 'center',
},
middleText2:
{
color:'black',
fontWeight: '200',
textAlign: 'center',
},
bottomButton:
{
backgroundColor: 'yellow',
color:'white',
textAlign:'center',
},
}
)

import React from 'react'
import MainPage from './pages/MainPage';
import AboutPage from './pages/AboutPage';
export default function App(){
// return (<MainPage/>)
return (<AboutPage/>)
}
