I have a simple application setup so far uses react router and an external API. I have some post archives of different types and when a user requests a detail page the API makes a request, and if it gets a page displays it if not displays a 404.
I'm able to set up transition groups to do nice cross fades between these pages, however the designer wants to do something a bit more old fashioned. He wants to slide over a blank overlay over the page, then slide it off to reveal the new page. Ideally with the title of the new page in this overlay.
I can't find a way to handle doing this with a react however. If this wasn't react I might just animate over a div while loading the other pages entire HTML with JS and then swap the required content sections.
Im currently using React 16.3 with react router DOM 5.0