Answers for "what is the type of children prop"

5

react props.children proptype

import PropTypes from 'prop-types'

...

static propTypes = {
    children: PropTypes.oneOfType([
        PropTypes.arrayOf(PropTypes.node),
        PropTypes.node
    ]).isRequired
}
Posted by: Guest on November-11-2020
0

what is the type of children prop

type Props = {
  title: string;
  children?: React.ReactNode;
};
Posted by: Guest on April-18-2022

Code answers related to "what is the type of children prop"

Browse Popular Code Answers by Language