initial commit
This commit is contained in:
23
packages/dev-tools-pages/ts/components/withContext.tsx
Normal file
23
packages/dev-tools-pages/ts/components/withContext.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
import * as React from 'react';
|
||||
|
||||
import ThemeContext from '../context';
|
||||
|
||||
interface Props {
|
||||
title?: string;
|
||||
name?: string;
|
||||
subtitle?: string;
|
||||
tagline?: string;
|
||||
icon?: React.ReactNode;
|
||||
colors?: any;
|
||||
}
|
||||
|
||||
function withContext(WrappedComponent: any) {
|
||||
function ComponentWithContext(props: any) {
|
||||
return <ThemeContext.Consumer>{data => <WrappedComponent {...data} {...props} />}</ThemeContext.Consumer>;
|
||||
}
|
||||
|
||||
return ComponentWithContext;
|
||||
}
|
||||
|
||||
export default withContext;
|
||||
export { withContext, Props };
|
Reference in New Issue
Block a user