index.js
15 lines
| 1 | /** |
| 2 | * Emails page components and utils. Matches MediaHub index pattern. |
| 3 | */ |
| 4 | export { default as Table } from './Table'; |
| 5 | export { |
| 6 | statusOptions, |
| 7 | renderTruncated, |
| 8 | getBadge, |
| 9 | formatPublishDate, |
| 10 | TRUNCATE_LENGTH, |
| 11 | togglePageSelection, |
| 12 | isPageFullySelected, |
| 13 | isPagePartiallySelected, |
| 14 | } from './Utils'; |
| 15 |