- useEffect 안에서 API Calls를 하는 것이 왜 안좋은가? : https://articles.wesionary.team/why-useeffect-is-a-bad-place-to-make-api-calls-98a606735c1c
221018 기준 아직 PR 단계에 있는 기능
Essentially, we're finally getting a native way to handle async functionallity in React. Meaning we don't really need to relly onuseEffect
to fetch our data we can simple create anaxios
fetch request and wrap it in ause
hook.