/** * This component shows input field with its label, styled */ import React from 'react'; interface LabelledInputProps { id: string, type: string, label: string, value: any, onChange: (value: any) => void } export const LabelledInput: React.FC = ({ id, type, label, value, onChange }) => { return (
); }