14 lines
427 B
React
14 lines
427 B
React
|
// @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>
|
||
|
);
|
||
|
}
|