()
| 1071 | }) |
| 1072 | |
| 1073 | const PostsComponent = () => { |
| 1074 | const search = useSearch({ strict: false }) |
| 1075 | return ( |
| 1076 | <> |
| 1077 | <h1>Posts</h1> |
| 1078 | <span>Page: {search().page}</span> |
| 1079 | </> |
| 1080 | ) |
| 1081 | } |
| 1082 | |
| 1083 | const postsRoute = createRoute({ |
| 1084 | getParentRoute: () => rootRoute, |
nothing calls this directly
no test coverage detected