import React from "react"; import ReactTooltip from "react-tooltip"; function LeftPaneSteps(props) { const handleBatchMode = () => { props.setBatchMode((oldValue) => !oldValue); }; return (
{/* BATCH OPTION */}

Batch Upscale:

{!props.batchMode ? ( <> {/* STEP 1 */}

Step 1

{/* STEP 2 */}

Step 2

Select Upscaling Type

{ props.setSharpen(e.target.checked); }} />

Sharpen Image

{/* STEP 3 */}

Step 3

Defaults to Image's path

{/* STEP 4 */}

Step 4

) : ( <> {/* STEP 1 */}

Step 1

{/* STEP 2 */}

Step 2

Select Upscaling Type

{/* STEP 3 */}

Step 3

Defaults to Folder's path

{/* STEP 4 */}

Step 4

)}
); } export default LeftPaneSteps;