lbry-desktop/ui/page/signInWalletPassword/view.jsx
2020-09-21 14:11:25 -04:00

12 lines
240 B
JavaScript

import React from 'react';
import Page from 'component/page';
import SyncPassword from 'component/syncPassword';
export default function SignInWalletPasswordPage() {
return (
<Page authPage>
<SyncPassword />
</Page>
);
}