5afcab4e78
* wip * trying to parse display names and emails * add nodemailer mailparser * mail parsing is working * add personId and workspaceMemberId * add date to messages * Fix PR * Run tsc on bigger machine * Fix lint --------- Co-authored-by: Charles Bochet <charles@twenty.com>
17 lines
506 B
TypeScript
17 lines
506 B
TypeScript
import { H2Title } from '@/ui/display/typography/components/H2Title';
|
|
import { Section } from '@/ui/layout/section/components/Section';
|
|
|
|
import { SettingsAccountsEmptyStateCard } from './SettingsAccountsEmptyStateCard';
|
|
|
|
export const SettingsNewAccountSection = () => {
|
|
return (
|
|
<Section>
|
|
<H2Title
|
|
title="New account"
|
|
description="Connect a new account to your workspace"
|
|
/>
|
|
<SettingsAccountsEmptyStateCard label="Connect a Google account" />
|
|
</Section>
|
|
);
|
|
};
|