Files
piratepoet/mailpoet/assets/js/src/settings/pages/advanced/advanced.tsx
Jan Jakes d664f60e4b Rename all non-snake-case JS/TS imports
[MAILPOET-4938]
2023-10-02 13:05:20 +02:00

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>
);
}