annu96.hashnode.devUnlocking React's Secret Sauce: Props, PropTypes, and More!Default Export vs Named Export In JavaScript, module exports play a crucial role in organizing and reusing code. Let's explore the difference between default exports and named exports. Consider the following module1.mjs file: // module1.mjs import ui...Dec 3, 2023·3 min read
annu96.hashnode.devUnderstanding JSXIntroduction Welcome back! Today we will learn about JSX which is a very important concept in React. With JSX, we can effortlessly blend JavaScript and HTML, enabling us to create captivating user interfaces Just to remind you, the content we see on ...Aug 3, 2023·4 min read
annu96.hashnode.devGet Started with ReactIntro to React React is a library to build single-page applications. It is maintained by Facebook(meta).Now, what does a single-page application mean? It means that our application runs without reloading the page again which gives a seamless experien...May 21, 2023·4 min read