| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- import Datatable from "@/components/Tables/Datatable";
- function TableRiwayat({ data }) {
- return (
- <Datatable options={{ responsive: true }}>
- <table className="table table-striped my-4 w-100">
- <thead>
- <tr>
- <th>Tanggal Dibuat</th>
- <th>Tanggal Dokumen</th>
- <th>Judul Dokumen</th>
- <th>File Pendukung</th>
- </tr>
- </thead>
- <tbody>
- {data.evaluasi.map((e, index) => (
- <tr key={index}>
- <td>{moment(e.createdAt).format("D MMMM YYYY")}</td>
- <td>{moment(e.tanggal).format("D MMMM YYYY")}</td>
- <td>{e.judul}</td>
- <td>
- {e.dokumen.map((e, index) => (
- <>
- <em key="index" className="fa-lg far fa-file-code"></em>
- <a className="text-muted" href={e.path} target="_blank" download={e.judul}>
- {e.judul}
- </a>
- <br />
- </>
- ))}
- </td>
- </tr>
- ))}
- </tbody>
- </table>
- </Datatable>
- );
- }
- export default TableRiwayat;
|