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 Banding extends Component { constructor(props) { super(props); } static getInitialProps = async () => { const sanksi = await getSanksi({ banding: true }); return { sanksi }; }; render() { const { sanksi } = this.props; return (
Banding
); } } export default Banding;