feat: add creation time display to SuitableDownloadPdf component

- Included creation time in the footer of the PDF content for better context.
- Ensured consistent display of creation time in both main and table content sections.
This commit is contained in:
yoosangwook 2025-06-02 15:25:41 +09:00
parent cd077d6cea
commit 404eaa3299

View File

@ -82,6 +82,7 @@ export default function SuitableDownloadPdf() {
<p></p> <p></p>
<p></p> <p></p>
</div> </div>
<div className="pdf-intro-foot-date">{createTime}</div>
</div> </div>
<div className="pdf-table-content"> <div className="pdf-table-content">
<div className="pdf-table-grid-wrap"> <div className="pdf-table-grid-wrap">
@ -123,6 +124,7 @@ export default function SuitableDownloadPdf() {
</div> </div>
))} ))}
</div> </div>
<div className="pdf-intro-foot-date mt10">{createTime}</div>
</div> </div>
</div> </div>
</> </>