feat: add Settings/Accounts/Emails Emails Sync section with empty state (#2941)

Closes #2823
This commit is contained in:
Thaïs
2023-12-12 12:21:10 +01:00
committed by GitHub
parent 4afa277690
commit 3ed92b2f80
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,14 @@
import { H2Title } from '@/ui/display/typography/components/H2Title';
import { Section } from '@/ui/layout/section/components/Section';
import { SettingsAccountsEmptyStateCard } from './SettingsAccountsEmptyStateCard';
export const SettingsAccountsEmailsSyncSection = () => (
<Section>
<H2Title
title="Emails sync"
description="Sync your inboxes and set your privacy settings"
/>
<SettingsAccountsEmptyStateCard />
</Section>
);