mirror of
https://github.com/upscayl/upscayl.git
synced 2025-02-21 13:09:35 +01:00
15 lines
340 B
JavaScript
15 lines
340 B
JavaScript
import React from "react";
|
|
|
|
function RightPaneInfo({ version, batchMode }) {
|
|
return (
|
|
<>
|
|
<p className="p-5 text-lg font-medium text-neutral-400">
|
|
Select {batchMode ? "a Folder" : "an Image"} to Upscale
|
|
</p>
|
|
<p className="text-neutral-600">Upscayl v{version}</p>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default RightPaneInfo;
|