aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/context/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/dev-tools-pages/ts/context/index.tsx')
-rw-r--r--packages/dev-tools-pages/ts/context/index.tsx11
1 files changed, 10 insertions, 1 deletions
diff --git a/packages/dev-tools-pages/ts/context/index.tsx b/packages/dev-tools-pages/ts/context/index.tsx
index 54556a3fd..3aba2f34c 100644
--- a/packages/dev-tools-pages/ts/context/index.tsx
+++ b/packages/dev-tools-pages/ts/context/index.tsx
@@ -1,5 +1,14 @@
import { createContext } from 'react';
+interface ContextInterface {
+ title?: string;
+ name?: string;
+ subtitle?: string;
+ tagline?: string;
+ icon?: React.ReactNode;
+ colors?: any;
+}
+
const ThemeContext = createContext({});
-export default ThemeContext;
+export { ThemeContext, ContextInterface };