import React from 'react' import PropTypes from 'prop-types' import styles from './New.module.css' export default function New({ input, handleInputChange, handleSave, accentColor }) { return (
  • handleInputChange(e)} className={styles.input} />
  • ) } New.propTypes = { input: PropTypes.string.isRequired, handleInputChange: PropTypes.func.isRequired, handleSave: PropTypes.func.isRequired, accentColor: PropTypes.string.isRequired }