This is by far the best "non-React" explanation of React I have seen, and you make it so easy to grasp going from known to unknown, from JS techniques and then introducing the React way. "How do you pass a variable? Like this. In React, they call these 'props'." Go view any other video: "In React, they have these things called 'props' that are very confusing to people...". lol Not anymore!
@raavikp3 жыл бұрын
The series on react is invaluable. Thank you for sharing your knowledge
@diprojitmondal18343 жыл бұрын
Huge love from India Sir
@felixpalganjr.74103 жыл бұрын
Waiting for the next video.
@bishwajeetpandey1570 Жыл бұрын
Hello as beginner to parcel facing an issue please try to help me out , According to documentation Parcel automatically generates sourcemaps by default , Fine, it is generating .map files in dist folder but when in i write console.log in my source code or any error thrown from my source file . These message display in the browser console but they still pointing to build files like index.abcderf.js rather than my source file index.js :disappointed:. So please tell me Is there any way so that console statment or errors maps to my source code file not to build file present in dist folder of parcel?
@getitdonetube Жыл бұрын
Do you use "parcel watch" or "parcel build"?
@bishwajeetpandey1570 Жыл бұрын
@@getitdonetube no only npx parcel build
@getitdonetube Жыл бұрын
That might be the reason why. I think your debug features would work if you run serve instead of build, but this is a question you should really ask on their github.