import React from "react"; function RightPaneInfo({ version, batchMode, isVideo }) { return isVideo ? ( <>
Select Video to Upscale
Upscayl v{version}
> ) : ( <>Select {batchMode ? "a Folder" : "an Image"} to Upscale
{batchMode && (Make sure that the folder doesn't contain anything except PNG, JPG, JPEG & WEBP images.
)}Upscayl v{version}
> ); } export default RightPaneInfo;