mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-02 13:27:55 +08:00
251d7c44d1
* Initial commit * SVG-based graph components * Add histogram, pull data into graphs * Loading animation, timespan descriptions * Improvements to read receipt / link tracking section * Initial pass at subject line analysis * Fixes to subject-line stats * Fix theme `ui-variables` include paths * Add “Share this report” button * Add “Learn More” button * Make it more clear how to edit your shortcuts * Merge activity-list and new activity-dashboard, move in sidebar
25 lines
738 B
JavaScript
25 lines
738 B
JavaScript
import React from 'react';
|
|
import { RetinaImg } from 'mailspring-component-kit';
|
|
|
|
const ActivityListEmptyState = function ActivityListEmptyState() {
|
|
return (
|
|
<div className="empty-state-container">
|
|
<RetinaImg
|
|
className="logo"
|
|
name="activity-list-empty.png"
|
|
mode={RetinaImg.Mode.ContentIsMask}
|
|
/>
|
|
<div className="text">
|
|
Enable read receipts{' '}
|
|
<RetinaImg name="icon-activity-mailopen.png" mode={RetinaImg.Mode.ContentDark} /> or link
|
|
tracking <RetinaImg
|
|
name="icon-activity-linkopen.png"
|
|
mode={RetinaImg.Mode.ContentDark}
|
|
/>{' '}
|
|
to see notifications here.
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ActivityListEmptyState;
|