index.js 775 B

1234567891011121314151617181920212223242526272829303132
  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">{/* <TableSanksi listData={sanksi.data} to="/app/keberatan/detail" linkName="Detail" /> */}</Col>
  23. </Row>
  24. </ContentWrapper>
  25. );
  26. }
  27. }
  28. export default Keberatan;