리팩터링 6주차 안건 (220918-220923) #294
gitul0515
started this conversation in
02.Refactoring
Replies: 4 comments 4 replies
-
@Hyevvy useEffect(() => {
exhibitionAPI
.custom(
getSelectedValue(selectedArea),
getSelectedValue(selectedPeriod),
getSelectedValue(selectedGenre),
currentPage,
8,
)
.then((res) => {
setTotal(res.data.data.totalPage);
setExhibitions(res.data.data.content);
});
}, [currentPage, selectedArea, selectedPeriod, selectedGenre]);
useEffect(() => {
exhibitionAPI.custom('ALL', 'ALL', 'ALL', 0, 10).then((res) => {
setTotal(res.data.data.totalPage);
setExhibitions(res.data.data.content);
});
}, []); |
Beta Was this translation helpful? Give feedback.
1 reply
-
전시회 상세 페이지 SEO가 중요한 페이지 |
Beta Was this translation helpful? Give feedback.
2 replies
-
Beta Was this translation helpful? Give feedback.
1 reply
-
document.tsx 기홍 땅땅 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
맞춤전시회 cursor: pointer 적용
Beta Was this translation helpful? Give feedback.
All reactions