lbry-desktop/ui/page/passwordUpdate/view.jsx

14 lines
427 B
React
Raw Normal View History

2021-08-23 08:18:27 +02:00
// @flow
import React from 'react';
import Card from 'component/common/card';
import Page from 'component/page';
import SettingAccountPassword from 'component/settingAccountPassword';
export default function PasswordUpdate() {
return (
<Page noFooter noSideNavigation settingsPage backout={{ title: __('Password'), backLabel: __('Back') }}>
<Card isBodyList body={<SettingAccountPassword />} />
</Page>
);
}