Add SPF description
[MAILPOET-2693]
This commit is contained in:
committed by
Veljko V
parent
9111e18e35
commit
cbac68d3a1
@@ -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>
|
||||
);
|
||||
}
|
||||
|
14
assets/js/src/settings/pages/send_with/other/spf.tsx
Normal file
14
assets/js/src/settings/pages/send_with/other/spf.tsx
Normal 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>
|
||||
</>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user