interface MasterInputProps { placeholder: string; isRequired: boolean; title: string; } const MasterInput = ({ placeholder, isRequired, title }: MasterInputProps) => { return (
{title}
*