I am trying to add an image as a background where various components like video, login, and bottom component will be placed on top of it. Can anyone help me with the correct code structure for achieving this in React? I am quite new to React development. All the different components will go within this section. The code snippet is provided below:
import React from 'react'
import Video from './Video.js'
import './Home.css'
import logo from './images/background.png'
function Home() {
return (
<div className="home">
<img src={ logo } />
</div>
)
}
export default Home