| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import { FormGroup } from "reactstrap";
- import Scrollable from "@/components/Common/Scrollable";
- function DetailJawaban({ data }) {
- const { jawaban } = data.sanksi.banding;
- return (
- <>
- <p className="lead bb">Jawaban Permohonan Banding</p>
- <form className="form-horizontal">
- <FormGroup>
- <label md="4">Jawaban:</label>
- <div md="8">
- <h3>{jawaban.status}</h3>
- </div>
- </FormGroup>
- <FormGroup>
- <label md="4">Dokumen Jawaban:</label>
- <div md="8">
- <Scrollable height="120px" className="list-group">
- <table className="table table-bordered bg-transparent">
- <tbody>
- {jawaban.files.map((e) => (
- <tr>
- <td>
- <em className="fa-lg far fa-file-code"></em>
- </td>
- <td>
- <a className="text-muted" href={`data:${e.type};base64, ${Buffer.from(e.data).toString("base64")}`} download={e.name}>
- {e.name}
- </a>
- </td>
- </tr>
- ))}
- </tbody>
- </table>
- </Scrollable>
- </div>
- </FormGroup>
- </form>
- </>
- );
- }
- export default DetailJawaban;
|