pgadmin4/web/regression/javascript/fake_theme.js

10 lines
233 B
JavaScript
Raw Normal View History

import React from 'react';
import Theme from 'sources/Theme';
export function withTheme(WrappedComp) {
// eslint-disable-next-line react/display-name
return (props)=>{
return <Theme><WrappedComp {...props}/></Theme>;
};
}