import React from 'react' import Themes from '../themes/themes' import { HuiThemes } from '../themes/presets' export type AllThemesConfig = { themes: Array } const defaultAllThemesConfig = { themes: Themes.getPresets() } export const AllThemesContext: React.Context = React.createContext(defaultAllThemesConfig) export const useAllThemes = (): AllThemesConfig => React.useContext(AllThemesContext)