1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-16 10:52:38 +01:00
upscayl/renderer/components/RightPaneInfo.tsx

21 lines
529 B
TypeScript
Raw Normal View History

2022-11-12 02:09:28 +05:30
import React from "react";
function RightPaneInfo({ version, batchMode }) {
return (
<>
2022-11-12 03:02:24 +05:30
<p className="p-5 pb-1 text-lg font-semibold">
2022-11-12 02:09:28 +05:30
Select {batchMode ? "a Folder" : "an Image"} to Upscale
</p>
{batchMode && (
2022-11-12 03:02:24 +05:30
<p className="w-full pb-5 text-center md:w-96">
2022-11-12 02:09:28 +05:30
Make sure that the folder doesn't contain anything except PNG, JPG,
JPEG & WEBP images.
</p>
)}
2022-11-12 03:02:24 +05:30
<p className="text-sm">Upscayl v{version}</p>
2022-11-12 02:09:28 +05:30
</>
);
}
export default RightPaneInfo;