TSTejeshwer Singh Sachdevintejeshwer-singh.hashnode.dev·Sep 6, 2021 · 4 min readRendering Lists in ReactA common scenario while working on a website is to render a list of items, and that might be your follower's list, notes in a todo app, contact list, or any kind of a list. In a simple static HTML site, we use the <ul> or <ol> tag along with the <li>...00
TSTejeshwer Singh Sachdevintejeshwer-singh.hashnode.dev·Sep 3, 2021 · 3 min readConditional Rendering in ReactIt might have happened or will surely happen with you that, you'd want to render the whole of the react component or a part of it based on some conditions according to the state of your component. That's where conditional rendering will save you. In ...00
TSTejeshwer Singh Sachdevintejeshwer-singh.hashnode.dev·Aug 4, 2021 · 10 min readRock, Paper, Scissor game using HTML, CSS & JSA rock, paper, scissor game is usually a hand game played between 2 players normally. But in this online age let's play our part in modifying this hand-based offline game and make it digital. To make this game we'll be using HTML, CSS, and JavaScrip...00
TSTejeshwer Singh Sachdevintejeshwer-singh.hashnode.dev·Jul 20, 2021 · 3 min readCreating a Web ComponentIn this blog, we'll be creating our very own Web Component which can be used merged with our HTML. This is the second blog in the series of Web Components and if you're just starting up with this topic I would recommend you to start with this blog ....00
TSTejeshwer Singh Sachdevintejeshwer-singh.hashnode.dev·Jul 20, 2021 · 3 min readWeb ComponentsWhenever we use any of those Front-end frameworks present in the market, like React, Angular, Vue, etc., we mostly break our User Interface into smaller manageable parts called the components. But have you ever thought that whether or not can we divi...00