Skip to content

Instantly share code, notes, and snippets.

View JoshuaPoddoku's full-sized avatar
🥑
Open for Collaborations

Joshua Poddoku JoshuaPoddoku

🥑
Open for Collaborations
View GitHub Profile
@JoshuaPoddoku
JoshuaPoddoku / march7.md
Last active March 7, 2021 17:32
Find the instant notes of the session Open source IWSC BVCOEW | Girlscript Workshop
@JoshuaPoddoku
JoshuaPoddoku / aTheUnpretentiousWebHome.md
Last active April 27, 2022 11:44
Welcome to The Unpretentious Web

Introduction

The Unpretentious Web is an initiative to focus on productive skills for web development. Due to amid outbreak of COVID-19, most of us are sitting at home pausing all the outdoor activities. It's the right time to learn, collaborate and contribute. The key aspect of this community is to learn web developement in an effective way, right from the basics. We will provide resources, links, PDFs and chance to make your own projects and collaborate with others.

@JoshuaPoddoku
JoshuaPoddoku / statesAndProps.md
Last active March 18, 2020 17:55
States & Props in React

What are they ?

States

  • A value that changes depending on a user's actions is called state in React.
  • State can be updated.
  • Prevent re-rendering
  • Three steps to use state:
    • Define: State is created using an object in the constructor.