import React from "react"; type GpuIdInputProps = { gpuId: string; handleGpuIdChange: (arg: string) => void; }; export function GpuIdInput({ gpuId, handleGpuIdChange }) { return (

GPU ID

Please read the Upscayl Wiki for more information.

{window.electron.platform === "win" && (

Enable performance mode on Windows for better results.

)}
); }