1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-20 00:08:02 +01:00

feat: include number of flags chart (#5987)

This commit is contained in:
Mateusz Kwasniewski 2024-01-22 12:15:49 +01:00 committed by GitHub
parent 8ba5cdced1
commit 055bab8e7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,7 @@ import { Box, Paper, styled, Typography } from '@mui/material';
import { PageHeader } from 'component/common/PageHeader/PageHeader';
import { VFC } from 'react';
import { UsersChart } from './UsersChart/UsersChart';
import { FlagsChart } from './FlagsChart/FlagsChart';
const StyledGrid = styled(Box)(({ theme }) => ({
display: 'grid',
@ -27,6 +28,7 @@ export const ExecutiveDashboard: VFC = () => {
<StyledGrid>
<Paper>Stats</Paper>
<UsersChart />
<FlagsChart />
</StyledGrid>
</>
);