mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-07 16:48:02 +08:00
12 lines
347 B
JavaScript
12 lines
347 B
JavaScript
import SendRemindersMailboxPerspective from './send-reminders-mailbox-perspective';
|
|
|
|
export const name = 'SendRemindersAccountSidebarExtension';
|
|
|
|
export function sidebarItem(accountIds) {
|
|
return {
|
|
id: 'Reminders',
|
|
name: 'Reminders',
|
|
iconName: 'reminders.png',
|
|
perspective: new SendRemindersMailboxPerspective(accountIds),
|
|
};
|
|
}
|