Listing 3-14: Using React.Fragment
The heading
The subheading
import {Fragment} from 'react';
function MyComponent(){
return(
<Fragment>
<h1>The heading</h1>
<h2>The subheading</h2>
</Fragment>
);
}
export default MyComponent;
Download the examples, report issues, and ask/answer questions in the discussion area by visiting the book's github page. All of the code for the book is also available on codesandbox.io for you to play around with.
ReactJS Foundations is published by John Wiley and Sons, Inc and is available in paperback and eBook.