Skip to content

Commit

Permalink
feat: include number of flags chart (#5987)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Jan 22, 2024
1 parent 8ba5cdc commit 055bab8
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -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',
Expand All @@ -27,6 +28,7 @@ export const ExecutiveDashboard: VFC = () => {
<StyledGrid>
<Paper>Stats</Paper>
<UsersChart />
<FlagsChart />
</StyledGrid>
</>
);
Expand Down

0 comments on commit 055bab8

Please sign in to comment.