Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What are Fragments?
Home
ReactJS
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 (
);
}
...