1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-21 13:09:35 +01:00
upscayl/renderer/components/RightPaneInfo.jsx
2022-09-19 05:24:45 +05:30

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;