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.tsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/dev-tools-pages/ts/context/index.tsx b/packages/dev-tools-pages/ts/context/index.tsx
new file mode 100644
index 000000000..3aba2f34c
--- /dev/null
+++ b/packages/dev-tools-pages/ts/context/index.tsx
@@ -0,0 +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 { ThemeContext, ContextInterface };