What is currently packages/portal is example of a running portal and should move to examples (it will get replaced by an actual portal lib soon).
12 lines
182 B
TypeScript
12 lines
182 B
TypeScript
import base from './base';
|
|
import { IThemes } from './utils';
|
|
|
|
/**
|
|
* The default theme to load
|
|
*/
|
|
export const DEFAULT_THEME = 'base';
|
|
|
|
export const themes: IThemes = {
|
|
base,
|
|
};
|