feat: subscription info in preferences

This commit is contained in:
Antonella Sgarlatta
2021-09-06 03:57:33 -03:00
parent b7d10810a5
commit 84ba497857
4 changed files with 194 additions and 1 deletions

View File

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