Reputation: 11
As result I just see a white page. I don't see any errors or anything.
Upvotes: 0
Views: 61
Reputation: 203208
The Route
component API's element
prop takes a ReactNode
, a.k.a. JSX. Buy
should be rendered as JSX, not passed as a reference to the component.
Example:
<Route path="/" element={<Buy />} />
Upvotes: 3