chore(webui): rename

This commit is contained in:
yiliang114 2026-01-14 23:27:56 +08:00
parent 1e2ef871d7
commit ec0586b135
25 changed files with 724 additions and 0 deletions

View file

@ -0,0 +1,25 @@
import type React from 'react';
interface InputProps {
value: string;
onChange: (value: string) => void;
placeholder?: string;
className?: string;
}
const Input: React.FC<InputProps> = ({
value,
onChange,
placeholder,
className = '',
}) => (
<input
type="text"
value={value}
onChange={(e) => onChange(e.target.value)}
placeholder={placeholder}
className={`border rounded px-3 py-2 ${className}`}
/>
);
export default Input;