import React, { useState } from 'react';
import {Pressable, Text, View} from 'react-native';
function Settings() {
const [count, setCount] = useState( initialState 1);
return (
<View>
<Pressable onPress={ () => setCount( value: p => p + 1 )}>
<Text>{count}</Text>
</Pressable>
</View>
}
export default Settings;
강의 보고 그대로 작성했는데 initialState와 Pressable 부분에서 setCount 내부 화살표 함수 작성시 아래에 위치한 닫는 Pressable과 View에서 받지 못하는 가 빨간 줄 뜨면서 에러가 뜹니다.