mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-25 04:55:30 +03:00
feat: add Settings/Accounts/Emails Emails Sync section with empty state (#2941)
Closes #2823
This commit is contained in:
parent
4afa277690
commit
3ed92b2f80
@ -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>
|
||||
);
|
@ -1,3 +1,4 @@
|
||||
import { SettingsAccountsEmailsSyncSection } from '@/settings/accounts/components/SettingsAccountsEmailsSyncSection';
|
||||
import { SettingsPageContainer } from '@/settings/components/SettingsPageContainer';
|
||||
import { IconSettings } from '@/ui/display/icon';
|
||||
import { SubMenuTopBarContainer } from '@/ui/layout/page/SubMenuTopBarContainer';
|
||||
@ -12,6 +13,7 @@ export const SettingsAccountsEmails = () => (
|
||||
{ children: 'Emails' },
|
||||
]}
|
||||
/>
|
||||
<SettingsAccountsEmailsSyncSection />
|
||||
</SettingsPageContainer>
|
||||
</SubMenuTopBarContainer>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user