rsnext/test/e2e/custom-app-render/components/page-identifier.jsx
Wyatt Johnson f45a7fce9a
Temporarily revert change to pages render (#52407)
This reverts the change to the pages render until a more substantial refactor can ensure that using the custom `app.render` method will attach a match to the request metadata.

- Fixes #52384
2023-07-07 17:58:36 +00:00

9 lines
154 B
JavaScript

import React from 'react'
export function PageIdentifier({ page }) {
return (
<div id="page" data-page={page}>
Page: {page}
</div>
)
}