YBYashashri Bongulwarinyashashri.hashnode.dev·May 27, 2023 · 3 min readWhy JSX ?React.createElement() when we create element using React.createElement() React converts it into object and reactDOM while rendering converts it into HTML DOM. eg - const heading = React.createElement( "h1", { id: "titleID", cl...00
YBYashashri Bongulwarinyashashri.hashnode.dev·May 26, 2023 · 7 min readTrying To Understand React - Part 2To create a production ready app we need to take care of multiple things - bundle things up, minimize files, optimization, code cleaning, caching, etc. To get this functionality we have to use something known as bundlers. There are various bundlers m...00
YBYashashri Bongulwarinyashashri.hashnode.dev·May 25, 2023 · 6 min readTrying To Understand React - Part 1What is React ? React is an open-source JavaScript library that is used for building user interfaces. It was developed by Facebook and released in 2013 It allows developers to create reusable UI components and efficiently update and render them when ...00
YBYashashri Bongulwarinyashashri.hashnode.dev·Jan 16, 2023 · 3 min readYou must know -CSS Box ModelThe CSS box model is a very important topic in CSS which talks about design and layout. every element in HTML is treated as a rectangular box and browsers render these elements considering the Box model. It consists of properties -content, padding, b...00
YBYashashri Bongulwarinyashashri.hashnode.dev·Jan 6, 2023 · 4 min readAll you need to know about "Css Grid"What is a CSS grid? Grid is a new layout model in CSS which works in two dimensions. It allows us easy space, position and size management of items vertically and horizontally. The main difference between Flex and Grid is - Flex is unidirectional and...00