This commit is contained in:
Evan Lanham
2022-03-24 00:28:48 -06:00
parent f7e82d1f5a
commit 0659a9736e
30 changed files with 506 additions and 140 deletions
@@ -0,0 +1,9 @@
import React from "react";
import ComparisonPanel from "./ComparisonPanel";
const AnalyticsPanel = (props) => {
if (props.selectedTeams.length > 0) return <ComparisonPanel selectedTeams={props.selectedTeams} />;
return <div />;
};
export default AnalyticsPanel;