diff --git a/app/src/components/Tree/TreeNode/index.tsx b/app/src/components/Tree/TreeNode/index.tsx index 8ad4edc..029cebe 100644 --- a/app/src/components/Tree/TreeNode/index.tsx +++ b/app/src/components/Tree/TreeNode/index.tsx @@ -135,4 +135,10 @@ function TreeNodeComponent(props: Props) { }, [treeNode.lastUpdate, treeNode, name, isCollapsed, selected, theme]) } -export default withStyles(styles, { withTheme: true })(TreeNodeComponent) +class TreeNodeComponentFasterReconciliationWrapper extends React.PureComponent { + public render() { + return + } +} + +export default withStyles(styles, { withTheme: true })(TreeNodeComponentFasterReconciliationWrapper)