Reformat 'performance' and 'src' code

This commit is contained in:
Nicolas Gallagher
2017-02-27 22:52:41 -08:00
parent 29d52f5b31
commit a2f25a46c4
102 changed files with 1177 additions and 1038 deletions

View File

@@ -6,15 +6,7 @@ const renderDeepTree = (label, components) => createRenderBenchmark({
name: `Deep tree [${label}]`,
runs: 20,
getElement() {
return (
<NestedTree
breadth={3}
components={components}
depth={6}
id={0}
wrap={1}
/>
);
return <NestedTree breadth={3} components={components} depth={6} id={0} wrap={1} />;
}
});