Первый коммит
This commit is contained in:
16
src/components/StatCharts.tsx
Normal file
16
src/components/StatCharts.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import RevenueChart from "./RevenueChart";
|
||||
import AgentsBarChart from "./AgentsBarChart";
|
||||
import styles from "../styles/dashboard.module.css";
|
||||
|
||||
const StatCharts: React.FC = () => (
|
||||
<div className={styles.chartsGrid}>
|
||||
<div className={styles.chartStub} style={{ padding: 0 }}>
|
||||
<RevenueChart />
|
||||
</div>
|
||||
<div className={styles.chartStub} style={{ padding: 0 }}>
|
||||
<AgentsBarChart />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
export default StatCharts;
|
||||
Reference in New Issue
Block a user