Redirect admin action extension to app page

I am creating an shopify custom app with Remix and React including extension. And the target is “admin.draft-order-details.action.render”. Someone plz tell how can I redirect to app page with selected resource data from admin action extension

You can just navigate using the browser open method to your app /apps/<your app handle> then add whatever data you like to your query string.

These are just web/browser/JS standards.
You can see examples of this in the app bridge docs when you click Javascript (you do not need app bridge, just linking an example)

Inside an Admin Action extention there isn’t a programatic way to navigate. However, you can render a Button or a Link and set the url to be /orders?id=${selected[0].id}. See the docs for more information.

How can I redirect to my app page on select my extension with data of draft order I selected


As Trish suggested, pass the ID of the draft order as a query parameter in the url.
Then use that in your app to load whatever data you need