|
|
@ -1,6 +1,7 @@ |
|
|
import React, { Component } from "react"; |
|
|
import React, { Component } from "react"; |
|
|
import MyButton from "../../components/MyButton/index.jsx"; |
|
|
import MyButton from "../../components/MyButton/index.jsx"; |
|
|
import PessoasTabela from "../../components/PessoasTabela/index.jsx"; |
|
|
import PessoasTabela from "../../components/PessoasTabela/index.jsx"; |
|
|
|
|
|
import GraficoPublicacoesDiariasPorComunidade from "../../components/GraficoPublicacoesDiariasPorComunidade/index.jsx" |
|
|
import Tabs from 'antd/lib/tabs'; |
|
|
import Tabs from 'antd/lib/tabs'; |
|
|
import {AiOutlineUser, AiOutlineBarChart, AiOutlineLineChart} from 'react-icons/ai' |
|
|
import {AiOutlineUser, AiOutlineBarChart, AiOutlineLineChart} from 'react-icons/ai' |
|
|
import "./index.less"; |
|
|
import "./index.less"; |
|
|
@ -66,10 +67,10 @@ export default class DashboardContainer extends Component { |
|
|
<TabPane tab={ |
|
|
<TabPane tab={ |
|
|
<span className="tab-name"> |
|
|
<span className="tab-name"> |
|
|
<AiOutlineLineChart size={24} color="#444" style={{marginRight: 5}} /> |
|
|
<AiOutlineLineChart size={24} color="#444" style={{marginRight: 5}} /> |
|
|
Gráfico de linhas |
|
|
|
|
|
|
|
|
Publicações diárias |
|
|
</span> |
|
|
</span> |
|
|
} key="3"> |
|
|
} key="3"> |
|
|
<>Content 3</> |
|
|
|
|
|
|
|
|
<GraficoPublicacoesDiariasPorComunidade /> |
|
|
</TabPane> |
|
|
</TabPane> |
|
|
</Tabs> |
|
|
</Tabs> |
|
|
</div> |
|
|
</div> |
|
|
|