added components, removed username from user
This commit is contained in:
33
src/app/components/Input.tsx
Normal file
33
src/app/components/Input.tsx
Normal file
@ -0,0 +1,33 @@
|
||||
import React from 'react';
|
||||
|
||||
interface InputProps {
|
||||
id: string;
|
||||
label: string;
|
||||
value: string;
|
||||
setChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
||||
required?: boolean;
|
||||
type?: string;
|
||||
placeholder?: string;
|
||||
}
|
||||
|
||||
const Input: React.FC<InputProps> = ({ id, label, value, setChange, required = false, type = "text", placeholder }) => {
|
||||
return (
|
||||
<div className="mb-4">
|
||||
<label htmlFor={id} className="block text-sm font-medium text-gray-700">
|
||||
{label}
|
||||
</label>
|
||||
<input
|
||||
type={type}
|
||||
id={id}
|
||||
value={value}
|
||||
onChange={setChange}
|
||||
name={id}
|
||||
placeholder={placeholder}
|
||||
className="mt-1 p-2 block w-full border border-gray-300 rounded-md shadow-sm"
|
||||
required={required}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Input;
|
||||
Reference in New Issue
Block a user