9 lines
115 B
TypeScript
9 lines
115 B
TypeScript
export const modes = {
|
|
darkTheme: {
|
|
theme: 'dark',
|
|
},
|
|
lightTheme: {
|
|
theme: 'light',
|
|
},
|
|
} as const;
|