mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2026-08-19 01:15:04 -05:00
9 lines
199 B
JavaScript
9 lines
199 B
JavaScript
import Theme from 'sources/Theme';
|
|
|
|
export function withTheme(WrappedComp) {
|
|
/* eslint-disable react/display-name */
|
|
return (props)=>{
|
|
return <Theme><WrappedComp {...props}/></Theme>;
|
|
};
|
|
}
|