Component props
Closed this issue · 1 comments
ivanbara commented
Hi,
Thanks for an excellent svelte router.
How would one pass props to routed components?
E.g.:
<Route exact path="/#faq" component={<FAQ prop1=true/>} /> ? (this doesn't work)
pateketrueke commented
Any additional property you assign to <Route />
will be passed down (except private props), e.g.
<Route exact path="/#faq" component={FAQ} prop1=true/>