mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
12 lines
257 B
JavaScript
12 lines
257 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
import UserPasswordReset from 'component/userPasswordReset';
|
|
import Page from 'component/page';
|
|
|
|
export default function PasswordResetPage() {
|
|
return (
|
|
<Page authPage>
|
|
<UserPasswordReset />
|
|
</Page>
|
|
);
|
|
}
|