34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
import { SaveButton } from 'settings/components';
|
|
import { TaskScheduler } from './task-scheduler';
|
|
import { Roles } from './roles';
|
|
import { EngagementTracking } from './engagement-tracking';
|
|
import { Transactional } from './transactional';
|
|
import { InactiveSubscribers } from './inactive-subscribers';
|
|
import { ShareData } from './share-data';
|
|
import { Libs3rdParty } from './libs-3rd-party';
|
|
import { Captcha } from './captcha';
|
|
import { Reinstall } from './reinstall';
|
|
import { RecalculateSubscriberScore } from './recalculate-subscriber-score';
|
|
import { Logging } from './logging';
|
|
import { BounceAddress } from './bounce-address';
|
|
|
|
export function Advanced() {
|
|
return (
|
|
<div className="mailpoet-settings-grid">
|
|
<BounceAddress />
|
|
<TaskScheduler />
|
|
<Roles />
|
|
<EngagementTracking />
|
|
<Transactional />
|
|
<RecalculateSubscriberScore />
|
|
<InactiveSubscribers />
|
|
<ShareData />
|
|
<Libs3rdParty />
|
|
<Captcha />
|
|
<Reinstall />
|
|
<Logging />
|
|
<SaveButton />
|
|
</div>
|
|
);
|
|
}
|