mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-08 15:13:10 -06:00
10 lines
226 B
JavaScript
10 lines
226 B
JavaScript
import React from 'react';
|
|
import Theme from 'sources/Theme';
|
|
|
|
export function withTheme(WrappedComp) {
|
|
/* eslint-disable react/display-name */
|
|
return (props)=>{
|
|
return <Theme><WrappedComp {...props}/></Theme>;
|
|
};
|
|
}
|