Fix
All checks were successful
Lint / lint (push) Successful in 11s

This commit is contained in:
Julien Valverdé
2025-07-14 21:12:54 +02:00
parent 04c8ecc4e1
commit f419474536
2 changed files with 12 additions and 6 deletions

View File

@@ -33,8 +33,7 @@ const SubComponent = Component.make(function* SubComponent() {
return <Text>{id}</Text>
})
const MemoizedSubComponent = Component.memo()(SubComponent)
console.log(MemoizedSubComponent.memo)
const MemoizedSubComponent = Component.memo(SubComponent)
export const Route = createFileRoute("/dev/memo")({
component: RouteComponent,