import React from "react"; function RightPaneInfo({ version, batchMode }) { return (

Select {batchMode ? "a Folder" : "an Image"} to Upscayl

{batchMode ? (

Make sure that the folder doesn't contain anything except PNG, JPG, JPEG & WEBP images.

) : (

Select or drag and drop a PNG, JPG, JPEG or WEBP image.

)}

Upscayl v{version}

); } export default RightPaneInfo;