Infer routes type to a custom component
I'm making a custom component that have a Link inside, I would like to pass the
to
route via props to the component, is there a type to get all the available routes in the same way the to
prop of the Link
does?
2 Replies
exotic-emerald•15mo ago
You can spread
LinkProps
into your component’s props and get it from there ✨itchy-amethystOP•15mo ago
I tried doing this:
but the
to
type is any for some reason
nevermind
it's working
thanks!