CHChisom Hermes Chigoziriincodepadawan.hashnode.dev·Dec 3, 2021 · 5 min readUnderstanding flex-basis and flex-growI recently started The Odin Project and I hit a wall during the FlexBox section. I had a bit of trouble understanding exactly how flex-basis in particular functioned relative to different flex-grow and flex-shrink values so after going taking time to...00
CHChisom Hermes Chigoziriincodepadawan.hashnode.dev·Nov 2, 2021 · 6 min read[React] Rendering dynamic list of contentOK so we have a project and in that project, we want to render some list of data that is dynamic and for example changes when the user clicks a button. Lets see how this is done in react, it's quite straightforward and you can probably already guess ...00
CHChisom Hermes Chigoziriincodepadawan.hashnode.dev·Oct 12, 2021 · 3 min readReact Series - #3 [State]State is an object in a component which holds some form of data relevant to the component it is created in. A State object is private to the component it is created in, It can be thought of as dynamic data managed by a component, unlike props which a...00
CHChisom Hermes Chigoziriincodepadawan.hashnode.dev·Oct 3, 2021 · 2 min readReact Series - #2 [Component & Props]React Component A Component can seen as a core element of every React UI. A UI made with react is essentially a combination of multiple components, the components are defined once and can be re-used in multiple parts of the UI and through the use of ...00
CHChisom Hermes Chigoziriincodepadawan.hashnode.dev·Sep 30, 2021 · 3 min readReact Series - #1 [ Intro ]I've decided to dive into React and will be making a blog-series on react as I learn it. Note: Take a look atthis post first to get a feel of some JavaScript syntax that is used in React. React is a popular JavaScript library used mostly in building ...00