Skip to content

Commit

Permalink
feat(admin-ui): show active users page on dashboard #43
Browse files Browse the repository at this point in the history
  • Loading branch information
syntrydy committed Feb 10, 2022
1 parent 003a2af commit bfe2870
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions admin-ui/app/routes/Dashboards/DashboardPage.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React, { useState, useEffect } from 'react'
import { subMonths } from 'date-fns'
import moment from 'moment'
import CustomPieGraph from './CustomPieGraph'
import CustomLineChart from './CustomLineChart'
import ActiveUsersGraph from './ActiveUsersGraph'
import CustomBarGraph from './Grapths/CustomBarGraph'
import CustomLineChart from './Grapths/CustomLineChart'
import ActiveUsersGraph from './Grapths/ActiveUsersGraph'
import DatePicker from 'react-datepicker'
import 'react-datepicker/dist/react-datepicker.css'
import GluuLoader from '../Apps/Gluu/GluuLoader'
Expand Down Expand Up @@ -178,7 +178,7 @@ function DashboardPage({ statData, permissions, loading, dispatch }) {
</FormGroup>
<FormGroup row>
<Col sm={6}>
<CustomPieGraph data={statData} />
<CustomBarGraph data={statData} />
</Col>
<Col sm={6}>
<CustomLineChart data={doDataAugmentation(statData)} />
Expand Down

0 comments on commit bfe2870

Please sign in to comment.