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 (
Keberatan
{/* */}
); } } export default Keberatan;