mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-14 10:34:06 +02:00
10 lines
250 B
JavaScript
10 lines
250 B
JavaScript
import React from "react";
|
|
|
|
export default function PageEditor({ pdfFile }) {
|
|
return (
|
|
<div className="w-full h-full flex items-center justify-center">
|
|
<p className="text-gray-500">Page Editor is under construction.</p>
|
|
</div>
|
|
);
|
|
}
|