Child route not rendering
why doesn't this work? If I change the
getParentRoute of entityCreate to () => root the component renders correctly (but I have to set the path to entity/create then)2 Replies
flat-fuchsia•3y ago
@Cris make sure you have an
<Outlet /> component in Entity
if you aren't wanting to combine the UI of Entity and EntityCreate then you will want to do something like this
quickest-silverOP•3y ago
Hi @Bryant thanks a lot for your reply, that worked.