in React
// fetch data with backend ```
const goToMain = () => {
fetch('http://10.58.5.235:8000/users/signin', {
method: 'POST',
body: JSON.stringify({
email: idValue,
password: pwValue,
}),
})
.then(response => response.json())
.then(result => console.log('결과: ', result));
};