Just as the title says, I want to know how to pass props to a React component that is passed to a Route as its element
prop.
So, for this code
<Route path="/" element={<App />} >
<Route path="table" element={<Table />} />
</Route>
How do I pass props to Table
?