first commit
This commit is contained in:
23
config.ts
Executable file
23
config.ts
Executable file
@@ -0,0 +1,23 @@
|
||||
export type ConfigProps = {
|
||||
Sidebar_drawer: any;
|
||||
Customizer_drawer: boolean;
|
||||
mini_sidebar: boolean;
|
||||
setHorizontalLayout: boolean;
|
||||
setRTLLayout: boolean;
|
||||
actTheme: string;
|
||||
boxed: boolean;
|
||||
setBorderCard: boolean;
|
||||
};
|
||||
|
||||
const config: ConfigProps = {
|
||||
Sidebar_drawer: null,
|
||||
Customizer_drawer: false,
|
||||
mini_sidebar: false,
|
||||
setHorizontalLayout: false, // Horizontal layout
|
||||
setRTLLayout: false, // RTL layout
|
||||
actTheme: 'BLUE_THEME',
|
||||
boxed: true,
|
||||
setBorderCard: false
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user