diff --git a/src/index.ts b/src/index.ts index 184241f..d937961 100644 --- a/src/index.ts +++ b/src/index.ts @@ -18,7 +18,6 @@ function traverse(node: FiberNode, fn: (node: FiberNode) => any) { // } fn.call(null, node); - console.log('Going through node with ', node); if (node.child !== null) { traverse(node.child, fn);