(WrappedComp)
| 1 | import Theme from 'sources/Theme'; |
| 2 | |
| 3 | export function withTheme(WrappedComp) { |
| 4 | /* eslint-disable react/display-name */ |
| 5 | return (props)=>{ |
| 6 | return <Theme><WrappedComp {...props}/></Theme>; |
| 7 | }; |
| 8 | } |
no outgoing calls
no test coverage detected