My use case is the following. I've an app that make many fetch call to the API to get data, the majority of those fetch calls need the page params. Currently the only way to get params in a RSC is layout.tsx or page.tsx props, and then you need to pass those values as props.
So, the question using this approach have any downsides? Is this even recommended?