SERVER-52576 Added libdeps graph visualizer web service with basic features.

This commit is contained in:
Daniel Moody
2021-02-25 21:25:11 +00:00
committed by Evergreen Agent
parent dac6c3ae77
commit 27aecefac7
42 changed files with 2366 additions and 55 deletions

View File

@@ -0,0 +1,4 @@
export default function SwitchComponents({ active, children }) {
// Switch all children and return the "active" one
return children.filter((child) => child.props.name == active);
}