diff --git a/packages/tuono-router/src/components/Matches.tsx b/packages/tuono-router/src/components/Matches.tsx index c86d24fc..28324cfe 100644 --- a/packages/tuono-router/src/components/Matches.tsx +++ b/packages/tuono-router/src/components/Matches.tsx @@ -26,5 +26,9 @@ const Match = React.memo(function ({ id }: MatchProps) { const route = router.routesById[location?.pathname] + if (route.options.hasHandler) { + console.log('Has rust handler') + } + return route.component() })