
2주차 숙제하기에서 AboutPage 에도 "어바웃페이지" 가 표시되어야되는데
왜안되는건가요??
import React from 'react'
import MainPage from './pages/MainPage';
import AboutPage from './pages/AboutPage';
export default function App(){
return (<AboutPage/>)
}
// AboutPage.js
import React from 'react'
import {View,Text} from 'react-native'
export default function AboutPage(){
return (<View>
<Text>어바웃페이지</Text>
</View>)
}

작성한 코드 및 에러 메세지
