Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Return Multiple Elements In React

To return multiple elements, wrap them in ` React.Fragment `

javascript
import React from 'react'

export default function HomePageTiles() {

    return (
        <React.Fragment>
            <div>Element 1</div>
            <div>Element 2</div>
        </React.Fragment>
    )
}