| 1234567891011121314151617181920212223242526272829303132 |
- import React, { Component } from "react";
- import ContentWrapper from "@/components/Layout/ContentWrapper";
- import { Row, Col } from "reactstrap";
- import CaseProgress from "@/components/Main/CaseProgress";
- import TableSanksi from "@/components/Main/TableSanksi";
- class Keberatan extends Component {
- constructor(props) {
- super(props);
- }
- static getInitialProps = async () => {
- return {};
- };
- render() {
- const { sanksi } = this.props;
- return (
- <ContentWrapper>
- <div className="content-heading">Keberatan</div>
- <Row>
- <Col lg="4">
- <CaseProgress />
- </Col>
- <Col lg="8">{/* <TableSanksi listData={sanksi.data} to="/app/keberatan/detail" linkName="Detail" /> */}</Col>
- </Row>
- </ContentWrapper>
- );
- }
- }
- export default Keberatan;
|