diff --git a/src/common/Focusable/withFocusable.js b/src/common/Focusable/withFocusable.js index f0f4e9096..44685a757 100644 --- a/src/common/Focusable/withFocusable.js +++ b/src/common/Focusable/withFocusable.js @@ -2,13 +2,11 @@ const React = require('react'); const FocusableContext = require('./FocusableContext'); const withFocusable = (Component) => { - return function withFocusable(props) { - return ( - - {focusable => } - - ); - }; + return (props) => ( + + {focusable => } + + ); }; module.exports = withFocusable;