| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 | 
							- import React, { Component } from "react";
 
- import ContentWrapper from "@/components/Layout/ContentWrapper";
 
- import Link from "next/link";
 
- import { Row, Col, Button } from "reactstrap";
 
- import { getPelaporan } from "@/actions/pelaporan";
 
- import { getGraph, getExcel } from "@/actions/graph";
 
- import CaseProgress from "@/components/Pelaporan/CaseProgress";
 
- import TableLaporan from "@/components/Pelaporan/TableLaporan";
 
- import { connect } from "react-redux";
 
- import Loader from "@/components/Common/Loader";
 
- import Router from "next/router";
 
- import TableRiwayat from "@/components/Riwayat/TableRiwayat";
 
- import ChartData from "@/components/Riwayat/ChartData";
 
- import ChartDataBar from "@/components/Riwayat/ChartDataBar";
 
- import Maps from "@/components/Riwayat/Maps"
 
- import ChartRadar from "../../../components/Riwayat/ChartRadarBelum";
 
- import ChartRadarBelum from "../../../components/Riwayat/ChartRadarBelum";
 
- import ChartRadarSudah from "../../../components/Riwayat/ChartRadarSudah";
 
- import TableRadar from "../../../components/Riwayat/TableRadar";
 
- import TableRiwayatt from "../../../components/Riwayat/TableRiwayatt";
 
- class Riwayat extends Component {
 
-   render() {
 
-     return (
 
-       <ContentWrapper>
 
-         <div className="content-heading">
 
-           <span className="font-color-white">Riwayat</span>
 
-         </div>
 
-         <Row>
 
-           <Col lg="6">
 
-             <ChartDataBar />
 
-           </Col>
 
-           <Col lg="6">
 
-             <Maps />
 
-           </Col>
 
-           <Col lg="6">
 
-             <ChartRadarBelum />
 
-           </Col>
 
-           <Col lg="6">
 
-             <ChartRadarSudah />
 
-           </Col>
 
-           <TableRadar />
 
-           <ChartData />
 
-           {/* <TableRiwayat /> */}
 
-           <Col lg="12">
 
-             <TableRiwayatt />
 
-           </Col>
 
-         </Row>
 
-       </ContentWrapper>
 
-     );
 
-   }
 
- }
 
- export default Riwayat;
 
 
  |