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