Login
Remember
Register
Ask a Question
What are Fragments?
0
votes
asked
Dec 19, 2023
in
ReactJS
by
john ganales
What are Fragments?
fragments
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Dec 19, 2023
by
john ganales
You can use fragment keyword to group a list of children components without using any extra nodes to the DOM. For example :
render() {
return (
);
}
...