1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-23 06:47:26 +01:00

22 lines
490 B
TypeScript
Raw Normal View History

2023-07-22 16:37:53 +05:30
import React from "react";
type GpuIdInputProps = {
gpuId: string;
handleGpuIdChange: (arg: string) => void;
};
export function GpuIdInput({ gpuId, handleGpuIdChange }) {
return (
<div className="flex flex-col gap-2">
<p className="text-sm font-medium">GPU ID</p>
<input
type="text"
placeholder="Type here"
className="input-bordered input w-full max-w-xs"
value={gpuId}
onChange={handleGpuIdChange}
/>
</div>
);
}