import React from 'react' import { Link, Head } from '@inertiajs/inertia-react' import DocStatusItem from './DocStatusItem' import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout' import InputLabel from '@/Components/InputLabel' import TextInput from '@/Components/TextInput' export default function FormDocument(props) { const { doc, doc_url }= props return (

Dokumen

{doc.reminders.map((reminder, index) => (
{reminder.date}
))}
Edit Kembali
) }