DEV Community

Discussion on: How to get data from an MySQL database in React Native

Collapse
 
dityaardananto profile image
dityaardananto

test(){
fetch('yourPCip:3000/users')
.then(response => response.json())
.then(users => console.warn(users))
}
is this code still in route.js?, or where did you write it?