|
1
|
// Internal dependencies |
|
2
|
import Content from './content'; |
|
3
|
import {__} from '@wordpress/i18n'; |
|
4
|
|
|
5
|
export const registerDashboardTab = () => |
|
6
|
window.giveDonorDashboard.utils.registerTab({ |
|
7
|
label: __('Dashboard', 'give'), |
|
8
|
icon: 'home', |
|
9
|
slug: 'dashboard', |
|
10
|
content: Content, |
|
11
|
}); |
|
12
|
|