React Native에서 Spring Boot 서버와 통신하려면 HTTP 요청을 보내야 한다.... fetch를 사용해 보자.fetch 기본 문법GET 요청은 단순하다. URL만 넘기면 된다.const response = await fetch('http://서버주소/api/words');const data = await response.json();POST 요청은 method, headers, body를 지정해야 한다.const response = await fetch('http://서버주소/api/words', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ english: 'appl..