I'm creating an e-commerce website using React Hooks and Router. Currently I have a blank home page, sign up and log in page. I want my background to change when the route changes to /signup. How do I add a background image when the Signup component loads? Below is my App component.
function App() {
return (
<BrowserRouter>
<Routes>
<Route exact path ='/' element={<Home />} />
<Route path='/signup' element={<Signup />} />
<Route path='/login' element={<Login />} />
</Routes>
</BrowserRouter>
);
}