()
| 6 | import './Page.css'; |
| 7 | |
| 8 | export default function Page2() { |
| 9 | let theme = useContext(Theme); |
| 10 | return ( |
| 11 | <div className={theme + '-box'}> |
| 12 | <Suspend>Content of a different page</Suspend> |
| 13 | </div> |
| 14 | ); |
| 15 | } |
nothing calls this directly
no test coverage detected