diff options
Diffstat (limited to 'packages/dev-tools-pages/ts/components/withContext.tsx')
-rw-r--r-- | packages/dev-tools-pages/ts/components/withContext.tsx | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/packages/dev-tools-pages/ts/components/withContext.tsx b/packages/dev-tools-pages/ts/components/withContext.tsx deleted file mode 100644 index d38c0afe4..000000000 --- a/packages/dev-tools-pages/ts/components/withContext.tsx +++ /dev/null @@ -1,23 +0,0 @@ -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 }; |