Skip to content

Latest commit

 

History

History
61 lines (39 loc) · 2.8 KB

react.md

File metadata and controls

61 lines (39 loc) · 2.8 KB

React

What are the pre requesites(excluding the general HTML, CSS, and JS) before starting off with React?

Apart from HTML, CSS and a good level of comfort with Javascript, learning react requires one to be be familiar with Object Oriented Concepts since React uses a lot of inheritance from classes and methods that are used to create both functional and presentational components. Knowledge of Single Page Applications is also important as it will give you an idea of how routing happens with the understanding that the routes are dynamic and not physical pages on the server. To set up you can either use a script tag that pulls in React in your project or to set up using create-react-app from Facebook. You can then write your own React code in a simple JS file for functional components and JSX file for presentational components.

You can start with the official docs' getting started page which are very beginner friendly.


Why do we need hooks?

Hooks are a way of letting the developer use State or other React Features without necessarily writing class components (sounds cool, right?!). Previously React required that to create state or set State of a component on needs to declare a class component where the state could be initialized and then would be later used in the class component. Using React hooks one can easily initialize state or any lifecycle methods within functional components. An example would be setting initial state of counter in a functional component and incrementing the counter as a button is clicked.

import { useState } from 'react';

function Example() {
  // Declare a new state variable, which we'll call "count"
  const [count, setCount] = useState(0);
  return (
    <div>
      <p>You clicked {count} times</p>
      <button onClick={() => setCount(count + 1)}>
        Click me
      </button>
    </div>
  );
}

From the above the useState is the hook which we use to initialize our state, to trigger the hook we call the function that we declare while initializing the react hook which is setCount. It is important to note that the hook will only be used with the initial state and will only work withing react functional components.


Why can’t we use variables/functions directly inside a function component?

If you know the answer to this question, please submit a pull request with the answer.

Waiting for response


What are React render props?

If you know the answer to this question, please submit a pull request with the answer.

Waiting for response