mod-arch-shared
Version:
Shared library for modular architecture micro-frontend projects
13 lines • 383 B
TypeScript
import * as React from 'react';
import { Theme } from '../utilities/const';
import '../style/MUI-theme.scss';
type ThemeProviderProps = {
theme?: Theme;
children: React.ReactNode;
};
export declare const ThemeContext: React.Context<{
theme: Theme;
}>;
export declare const ThemeProvider: React.FC<ThemeProviderProps>;
export {};
//# sourceMappingURL=ThemeContext.d.ts.map