index.js 791 B

12345678910111213141516171819202122232425262728293031323334
  1. import React, { Component } from "react";
  2. import ContentWrapper from "@/components/Layout/ContentWrapper";
  3. import { Row, Col } from "reactstrap";
  4. import CaseProgress from "@/components/Main/CaseProgress";
  5. import TableSanksi from "@/components/Main/TableSanksi";
  6. class Keberatan extends Component {
  7. constructor(props) {
  8. super(props);
  9. }
  10. static getInitialProps = async () => {
  11. return {};
  12. };
  13. render() {
  14. const { sanksi } = this.props;
  15. return (
  16. <ContentWrapper>
  17. <div className="content-heading">Keberatan</div>
  18. <Row>
  19. <Col lg="4">
  20. <CaseProgress />
  21. </Col>
  22. <Col lg="8">
  23. {/* <TableSanksi listData={pelaporan.data} to="/app/keberatan/detail" linkName="Detail" /> */}
  24. </Col>
  25. </Row>
  26. </ContentWrapper>
  27. );
  28. }
  29. }
  30. export default Keberatan;