CommentJan 3, 20171TDD and advanced usage of functional programming for meWhat are a few things you are planning to improve in your development workflow/coding process in 2017?
ReplyJan 3, 20171amen! me too :)What are a few things you are planning to improve in your development workflow/coding process in 2017?
CommentDec 14, 20162Isnt thought material UI messier ? I dont like that material UI messing with inline css code on every component i prefer the css way.Which one is the better Material Design Framework for ReactJS apps : Material UI vs React Toolbox?
CommentDec 13, 20161like @topey said i am using something like componentDidMount() { if(!this.props.user) { //fetch or dispatch } }Props not loading before Render?
ReplyDec 13, 20161i can do that with webpack though with babel+webpack. My questions though is shall i stick with function way or shall i move to classes. Not a big fan of OO on jsSplitting Javascript library into modules
CommentDec 12, 20161What i did to solve this is to do a check on componentDidLoad function and check if the props.item is empty or not. If it is then i am fetching from server!load page to fetch data?