import React, { FC, ChangeEventHandler } from 'react'; import './style.scss'; export type TInputProps = { /** * Is this the text you want to add to the input placeholder */ placeholder?: string /** * Is this the onChange event of the input */ onChange?: ChangeEventHandler }; export const Input:FC = ({ placeholder = '', onChange = (e) => {} }) => { return( ) }