import React from 'react' import {RetinaImg} from 'nylas-component-kit' import OnboardingActions from './onboarding-actions' export default class SelfHostingRestrictionsPage extends React.Component { static displayName = 'SelfHostingRestrictionsPage' _onContinue = () => { OnboardingActions.moveToPage("self-hosting-setup"); } render() { return (

Are you sure?

Some of N1's most powerful features, like snooze, read receipts, and send later, require the hosted version of our backend infrastructure. These features won't be available while you use N1 with your own sync engine.
) } }