| 12345678910111213 |
- import React, { PropTypes } from 'react';
-
- const Input = ({ value, change, placeholder }) =>
- <input type="text" className="new-link" placeholder={placeholder} autoFocus
- value={value} onChange={e => change(e.target.value)} />;
-
- Input.propTypes = {
- change: PropTypes.func.isRequired,
- value: PropTypes.string.isRequired,
- placeholder: PropTypes.string
- };
-
- export default Input;
|