prop type func code example

Example 1: use propTypes in react function

import React from 'react';
import { PropTypes } from 'prop-types';

const student = (props) => {
  return (
    

Student Name: {props.name}

Age: {props.age}

); }; student.propTypes = { name: PropTypes.string, age: PropTypes.number }; export default student;

Example 2: proptypes objectof

Component.propTypes = {

  booleanObjectProp: PropTypes.objectOf(
    PropTypes.bool
  ),
  
  multipleObjectProp: PropTypes.objectOf(
    PropTypes.oneOfType([
      PropType.func,
      PropType.number,
      PropType.string,
      PropType.instanceOf(Person)
    ])
  )
  
}

Example 3: react propthpes or

size: PropTypes.oneOfType([
  PropTypes.string,
  PropTypes.number
]),

Tags:

Misc Example