Add SPF description

[MAILPOET-2693]
This commit is contained in:
Amine Ben hammou
2020-04-09 05:33:04 +02:00
committed by Veljko V
parent 9111e18e35
commit cbac68d3a1
2 changed files with 17 additions and 0 deletions

View File

@@ -1,10 +1,13 @@
import React from 'react';
import SendingMethod from './sending_method';
import SPF from './spf';
export default function OtherSendingMethods() {
return (
<div className="mailpoet-settings-grid">
<SendingMethod />
<SPF />
</div>
);
}

View File

@@ -0,0 +1,14 @@
import React from 'react';
import { t } from 'common/functions';
import { Label, Inputs } from 'settings/components';
export default function SPF() {
return (
<>
<Label title={t('spfTitle')} description={t('spfDescription')} htmlFor="" />
<Inputs>
{t('spfSetup')}
</Inputs>
</>
);
}