0 votes
in ReactJS by
What are Fragments?

1 Answer

0 votes
by
You can use fragment keyword to group a list of children components without using any extra nodes to the DOM. For example :

render() {

return (

);

}
...