mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
13 lines
345 B
JavaScript
13 lines
345 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),
|
|
}
|
|
}
|