aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/context/index.tsx
blob: 3aba2f34c0e5122f92a17a901e8e7b7537b7e758 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 };