import React, { Component } from "react"; import ContentWrapper from "@/components/Layout/ContentWrapper"; import { Row, Col } from "reactstrap"; import { getSanksi } from "@/actions/sanksi"; import TableSanksi from "@/components/PT/TableSanksi"; class Keberatan extends Component { constructor(props) { super(props); } static getInitialProps = async () => { const sanksi = await getSanksi(); return { sanksi }; }; render() { const { sanksi } = this.props; return (
Permohonan Keberatan
); } } export default Keberatan;