79569971

Date: 2025-04-12 02:54:29
Score: 0.5
Natty:
Report link

Without using <Route path = "/Home" Component={Home} /> , "Component" you need to use element, so change this to,

  <Route path = "/Home" Component={Home} />

this,

 <Route path="/Home" element={<Home />} />

This is how router dom v6 works. for v5 your approach is ok.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: shanaka prince