From 7f5b0fcb8dea585c79d23e27b1e21e72456029e5 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Thu, 4 Apr 2019 15:52:11 +0300 Subject: LoginButton using hooks, Input component --- vnext/src/components/Input.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 vnext/src/components/Input.js (limited to 'vnext/src/components/Input.js') diff --git a/vnext/src/components/Input.js b/vnext/src/components/Input.js new file mode 100644 index 00000000..5c150ec3 --- /dev/null +++ b/vnext/src/components/Input.js @@ -0,0 +1,9 @@ +import React from 'react'; + +import './Input.css'; + +function Input({ name, value, ...rest }) { + return() +} + +export default React.memo(Input); \ No newline at end of file -- cgit v1.2.3