Initial Version
This commit is contained in:
15
core/src/config.ts
Normal file
15
core/src/config.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
export type ConfigProps = {
|
||||
Sidebar_drawer: boolean;
|
||||
mini_sidebar: boolean;
|
||||
actTheme: string;
|
||||
fontTheme: string;
|
||||
};
|
||||
|
||||
const config: ConfigProps = {
|
||||
Sidebar_drawer: true,
|
||||
mini_sidebar: false,
|
||||
actTheme: 'light',
|
||||
fontTheme: 'Public sans'
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user