Case 1: when using element attribute within Route tag
const App = () => {
return(
<Routes>
<Route path="/" element={<Home />} />
<Route path="/album" element={<Album />} />
</Routes>
)
};
Case 2: when using component attribute within Route tag
const App = () => {
return(
<Routes>
<Route path="/" component={<Home />} />
<Route path="/album" component={<Album />} />
</Routes>
)
};
