remove logs for now

This commit is contained in:
MapleLeaf
2021-12-09 04:26:45 -06:00
parent f43ea6269a
commit c8f7f570fd

View File

@@ -60,12 +60,12 @@ export const reconciler = ReactReconciler<
preparePortalMount: () => raise("Not implemented"), preparePortalMount: () => raise("Not implemented"),
createContainerChildSet: (container: ReacordContainer): string[] => { createContainerChildSet: (container: ReacordContainer): string[] => {
console.log("createContainerChildSet", [container]) // console.log("createContainerChildSet", [container])
return [] return []
}, },
appendChildToContainerChildSet: (children: string[], child: string) => { appendChildToContainerChildSet: (children: string[], child: string) => {
console.log("appendChildToContainerChildSet", [children, child]) // console.log("appendChildToContainerChildSet", [children, child])
children.push(child) children.push(child)
}, },
@@ -73,7 +73,7 @@ export const reconciler = ReactReconciler<
container: ReacordContainer, container: ReacordContainer,
children: string[], children: string[],
) => { ) => {
console.log("finalizeContainerChildren", [container, children]) // console.log("finalizeContainerChildren", [container, children])
return false return false
}, },
@@ -81,7 +81,7 @@ export const reconciler = ReactReconciler<
container: ReacordContainer, container: ReacordContainer,
children: string[], children: string[],
) => { ) => {
console.log("replaceContainerChildren", [container, children]) // console.log("replaceContainerChildren", [container, children])
container.render(children) container.render(children)
}, },
}) })