Skip to content

Latest commit

 

History

History

Props

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Props Aka Properties

const itemByPerson = 'CobolAndFtnFB';
const slogan = "LLP,Brb Dolls,727225, 7652626,35,34367864 Are The Best Thing Ever";
const img = "https://static.wikia.nocookie.net/borlandpascal/images/5/54/Hello_world.png/revision/latest/scale-to-width-down/340?cb=20071210155316.jpg"


function itemList(){
  return (
    <section className="itemList">
      <Item job="Enthusiast Pascal Developer"/>
      <Item title='Mr.42932' number={429} />
    </section>
  );
}


const Item = (props) =>{

  return (
    <article className="item">
      <img
      src="{img}" alt='63526 Fav Prog Lang'/>
      <h1>{slogan}</h1>
      <h4>{itemByPerson}</h4>
      {/*how to display on the first element and not on the second*/}
      <p>{props.job}</p>
      <p>{props.title}</p>
    </article>
  );
};


//How To Render To The DOM
ReactDom.render(<itemList/>, document.getElementbyId('root'));

React Card Functional Component Example... Props is what I pass in between my components

This is a layout which will allow me to create multiple cards

function Card(myprops){
return (
  <div>
    <h2>{myprops.name}</h2>
    <img src={myprops.img} alt="avatar_img"/>
    <p>{myprops.telephone}</p>
    <p>{myprops.email}</p>
  </div>
)

Now This will allow me to create other cards easily thanks to my functional comp

ReactDOM.render(
  <div>
    <h1>My contacts</h1>
    <Card
      name="Nelan Ngo"
      img="nelantheftn.jpg"
      tel="+15124293753"
      email="[email protected]"
     />
     <Card
      name="Angela Caoo"
      img="angelatheengprog.jpg"
      tel="+15123647763"
      email="[email protected]"
     />
     <Card
      name="Dhenanjay 252632"
      img="djfbisnelan.jpg"
      tel="+15123542932"
      email="[email protected]"
     />
  
  </div>,
  document.getElementById("root");
)

So What Are Props(Short for Properties) Used For

  • Props are used for passing data from one component to another
  • Props are used in ReactJS so that when they are passed from a parent component to a child component the child component cannot mutate it
  • We pass props to the child so that he is able to use the data but he cannot modify it
  • If a component cannot find a prop it will not generate an error in ReactJS instead it will just output undefined.

PropTypes: Type checking package if you do not want to use Typescript

How To Install

npm install --save prop-types

How It's used example

import React from 'react';
import { PropTypes } from 'prop-types';
class Student extends React.Component {
  
  render() {
    return (
      <div>
        <p>Student Name: {this.props.name}</p>
        <p>Is A 429 FB: {this.props.isaftnfb}</p>
      </div>
    );
  }
}
Student.propTypes = {
  name: PropTypes.string,
  isaftnfb: PropTypes.bool 
};
export default Student;

Different Prop Types Checkers

  • propArray: PropTypes.array => Ensures I input an Array for the input type
  • propBool: PropTypes.bool => Ensures I passs in a Boolean Value for the input type
  • propFunc: PropTypes.func => Ensures I pass in a Function for the input type
  • propNumber: PropTypes.number => Ensures I pass in a number for the type
  • propObject: PropTypes.object => Ensures I pass in an Object for the type
  • propString: PropTypes.string => Ensures I pass in a String for the type