목록Face the fear, build the future (128)
Silver Library (Archived)
네, 최종 결론입니다. Redux 의 필요성이 현 시점에서는 '뭔가 기존의 state 를 계속 유지 한 채, 해당 state 를 특정 action 에 맞게 바꿀 필요성이 안 느껴지는게 가장 큽니다. 하다 보니, '굳이?' 라는 생각마저 들었습니다. 차라리 증명이 목적이라면, 나중에 작은 프로젝트 하나 만드는게 더 효율적일 것 같습니다. 아쉽지만 지금 당장은 react 를 기반으로 해서 개인 페이지를 만드는데에 이번주는 전념 해보고자 합니다. 1. 최초의 폰트 적용.
상황 정리를 해 보자면... 1. React 는 편리한 JS 의 library 입니다. 1.1 Redux 도 JS 의 library 입니다. 1.2 Redux 는 여러모로 파일 생성 과정에서 머리가 덜 아파 보입니다. 특히 프로그래머의 시점에서. - App 의 global state 가 store 라는 곳에 저장되어 있습니다. - container components 를 store 에 연결 시켜줌으로서, redux store 의 내용물에 접근이 가능합니다. - mapStatetoProps 를 사용하여 component 의 props 에 대한 mapping 이 가능합니다. - mapDispatchToProps 를 사용하여, dispatch 함수들을 callback props 으로서 표현하고자 하는 comp..
Although Redux has some debate whether beginner should use this or do it when they feel react is not comfortable, still, sure the way to separate those state to each file and manage them independently concept sounds good. At least for me. I no longer need to sick of linking all of them so massively. So, that's the point. I am highly likely to edit my page occasionally - state. The question is, U..
Not bad so far, but I need to speed up. Good news is, the decision I made was right. After React, I immediately attempted to make a new one but had no idea where to start doing this. As roadmap suggested, I touched Redux and tried to understand how it works. That's where the oil came out. For me at least. I got a lot of confidence now compare to initially I learnt React by myself. And finally, I..