rsnext/test/integration/route-load-cancel-css/pages/page1.js
Joe Haddad 9acd001e09
Fix render cancel behavior (#16462)
This pull request correctly tracks render cancelation behavior. Prior to this PR, we'd have an unhandled rejection that left the app in a bad state and no routeChangeError event was fired.

---

Closes #16424
Fixes #16445
2020-08-22 11:47:21 +00:00

11 lines
162 B
JavaScript

import styles from './page1.module.css'
function Page1() {
return (
<p id="page-text" className={styles.abc}>
1
</p>
)
}
export default Page1