| 123456789101112131415161718192021222324252627282930313233343536 | 
							- 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";
 
- import { getSanksi } from "@/actions/sanksi";
 
- class PemantauanPerbaikan extends Component {
 
- 	constructor(props) {
 
- 		super(props);
 
- 	}
 
- 	static getInitialProps = async () => {
 
- 		const sanksi = await getSanksi({ docPerbaikan: true });
 
- 		return { sanksi };
 
- 	};
 
- 	render() {
 
- 		const { sanksi } = this.props;
 
- 		return (
 
- 			<ContentWrapper>
 
- 				<div className="content-heading">Banding</div>
 
- 				<Row>
 
- 					<Col lg="4">
 
- 						<CaseProgress />
 
- 					</Col>
 
- 					<Col lg="8">
 
- 						<TableSanksi listData={sanksi.data} to="/app/pemantauan-perbaikan/detail" linkName="Detail" />
 
- 					</Col>
 
- 				</Row>
 
- 			</ContentWrapper>
 
- 		);
 
- 	}
 
- }
 
- export default PemantauanPerbaikan;
 
 
  |