mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 00:37:36 -06:00
dcfef154ce
- Upgrade ESLint to v9.x and migrate the .eslintrc.js file to make it work
9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
import React from 'react';
|
|
import Theme from 'sources/Theme';
|
|
|
|
export function withTheme(WrappedComp) {
|
|
return (props)=>{
|
|
return <Theme><WrappedComp {...props}/></Theme>;
|
|
};
|
|
}
|