인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

jhh68224492's profile image
jhh68224492

asked

Delivery App Clone Coding [with React Native]

Screen and nested routing

에러 발생

Written on

·

233

0

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에서 받지 못하는 가 빨간 줄 뜨면서 에러가 뜹니다.
react-native

Answer 1

0

zerocho님의 프로필 이미지
zerocho
Instructor

강좌 화면에서 회색으로 뜨는 initialState랑 value 등은 따라서 치는 게 아닙니다. 에디터에서 제공하는 힌트입니다.

jhh68224492's profile image
jhh68224492

asked

Ask a question