Tabs
6 months ago
DonorDetailsPage.module.scss
1 year ago
index.tsx
10 months ago
slots.ts
10 months ago
slots.ts
18 lines
| 1 | import {createSlotFill} from '@wordpress/components'; |
| 2 | |
| 3 | /** |
| 4 | * @since 4.4.0 |
| 5 | */ |
| 6 | const {Slot: ProfileSectionsSlot, Fill: ProfileSectionsFill} = createSlotFill('GiveWP/DonorDetails/Profile/Sections'); |
| 7 | /** |
| 8 | * @since 4.10.0 |
| 9 | */ |
| 10 | const {Slot: OverviewSidebarSlot, Fill: OverviewSidebarFill} = createSlotFill('GiveWP/DonorDetails/Overview/Sidebar'); |
| 11 | |
| 12 | export { |
| 13 | ProfileSectionsSlot, |
| 14 | ProfileSectionsFill, |
| 15 | OverviewSidebarSlot, |
| 16 | OverviewSidebarFill |
| 17 | }; |
| 18 |