mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-10 00:46:15 +01:00
22 lines
542 B
TypeScript
22 lines
542 B
TypeScript
import React from 'react';
|
|
|
|
interface LabelledInputProps {
|
|
id: string,
|
|
type: string,
|
|
label: string,
|
|
value: any,
|
|
onChange: (value: any) => void
|
|
}
|
|
|
|
/**
|
|
* This component shows input field with its label, styled
|
|
*/
|
|
export const LabelledInput: React.FC<LabelledInputProps> = ({ id, type, label, value, onChange }) => {
|
|
return (
|
|
<div className="input-with-label">
|
|
<label className="label" htmlFor={id}>{label}</label>
|
|
<input className="input" id={id} type={type} value={value} onChange={onChange} />
|
|
</div>
|
|
);
|
|
}
|