diff options
Diffstat (limited to 'vnext/src/ui/Input.js')
-rw-r--r-- | vnext/src/ui/Input.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vnext/src/ui/Input.js b/vnext/src/ui/Input.js index e4fdefa0..2f01f0c6 100644 --- a/vnext/src/ui/Input.js +++ b/vnext/src/ui/Input.js @@ -1,4 +1,4 @@ -import React from 'react'; +import { memo } from 'react'; import './Input.css'; @@ -20,4 +20,4 @@ function Input({ name, value, ...rest }) { ); } -export default React.memo(Input); +export default memo(Input); |