Answer the question
In order to leave comments, you need to log in
Are props needed?
Example from documentation:
function Welcome(props) {
return <h1>Hello, {props.name}</h1>;
}
function Welcome() {
return <h1>Hello, World!</h1>;
}
Answer the question
In order to leave comments, you need to log in
If you're not using props , don't post.
When used, you can do destructuring:
function Welcome({ name }) {
return <h1>Hello, {name}</h1>;
}
export default function Welcome() {
return <h1>Hello, World!</h1>;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question