mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
10 lines
197 B
JavaScript
10 lines
197 B
JavaScript
/** @babel */
|
|
import ThemePickerStore from './theme-picker-store';
|
|
|
|
export function activate() {
|
|
ThemePickerStore.activate();
|
|
}
|
|
|
|
export function deactivate() {
|
|
ThemePickerStore.deactivate();
|
|
}
|