<button className="btn" onClick={() => {
state === true ? <Loading_page/> : null;
axios.get('https://codingapple1.github.io/shop/data2.json')
.then((data) => {
let shoeselist = [...shoes, ...data.data];
shoes변경(shoeselist);
})
.catch(() => {})
}}>버튼</button>
이런식으로 버튼안에 조건문은 넣었는데 작동을 안하네요 제가 잘못쓴건가요?