aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/ui/Input.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/src/ui/Input.js')
-rw-r--r--vnext/src/ui/Input.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/vnext/src/ui/Input.js b/vnext/src/ui/Input.js
new file mode 100644
index 00000000..c74d595d
--- /dev/null
+++ b/vnext/src/ui/Input.js
@@ -0,0 +1,17 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+import './Input.css';
+
+function Input({ name, value, ...rest }) {
+ return (
+ <input className="input" name={name} value={value} {...rest} />
+ );
+}
+
+Input.propTypes = {
+ name: PropTypes.string.isRequired,
+ value: PropTypes.string.isRequired
+};
+
+export default React.memo(Input);