import React from 'react' import styles from './Input.module.css' const Input = ({ label, id, value, type, name, onChange, placeholder }) => { return (
) } export default Input