| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import { FormGroup } from "reactstrap";
- import Scrollable from "@/components/Common/Scrollable";
- function DetailJawaban({ data }) {
- return (
- <>
- <p className="lead bb">Jawaban Permohonan Keberatan</p>
- <form className="form-horizontal">
- <FormGroup>
- <label md="4">Jawaban:</label>
- <div md="8">
- <h3>{data.status}</h3>
- </div>
- </FormGroup>
- <FormGroup>
- <label md="4">Keterangan:</label>
- <div md="8">
- <p>{data.keterangan}</p>
- </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>
- {data.dokumen.map((e) => (
- <tr>
- <td>
- <em className="fa-lg far fa-file-code"></em>
- </td>
- <td>
- <a className="text-muted" href={e.path} target="_blank" download={e.judul}>
- {e.judul}
- </a>
- </td>
- </tr>
- ))}
- </tbody>
- </table>
- </Scrollable>
- </div>
- </FormGroup>
- </form>
- </>
- );
- }
- export default DetailJawaban;
|