
MainPage 띄우면 오류가 안 나는데 AboutPage 작성 중에 자꾸 오류가 나요ㅠ
AboutPage 현재 버전 코드
import React from 'react'
import {StyleSheet,View,Text} from 'react-native'
export default function AboutPage(){
return (
<View style={styles.container}>
<Text style={styles.title}>HI! 스파르타코딩 앱개발 반에 오신 것을 환영합니다</Text>
<View style={styles.cardContainer}>
<Test>많은 내용을 간결하게 담아내려 노력했습니다!</Test>
</View>
</View>
);
}
const styles = StyleSheet.create({
container: {
//앱의 배경 색
backgroundColor: 'navy',
},
title: {
fontSize: 32,
color: 'white',
fontWeight: '700',
marginTop:80,
marginLeft:30,
marginRight:30,
textAlign:"Center"
},
cardContainer: {
backgroundcolor: 'navy'
}
});




