Files
standardnotes-app-web/app/assets/javascripts/preferences/panes/AccountPreferences.tsx
2021-09-07 12:04:25 -03:00

14 lines
493 B
TypeScript

import { Sync, SubscriptionWrapper } from '@/preferences/panes/account';
import { PreferencesPane } from '@/preferences/components';
import { observer } from 'mobx-react-lite';
import { WebApplication } from '@/ui_models/application';
export const AccountPreferences = observer(({application}: {application: WebApplication}) => {
return (
<PreferencesPane>
<Sync application={application} />
<SubscriptionWrapper application={application} />
</PreferencesPane>
);
});