summaryrefslogtreecommitdiff
path: root/buildscripts/libdeps/graph_visualizer_web_stack/src/SwitchComponent.js
blob: 5d5da96c9602a3c48f75fac4231a9f537eafb3ab (plain)
1
2
3
4
export default function SwitchComponents({ active, children }) {
  // Switch all children and return the "active" one
  return children.filter((child) => child.props.name == active);
}