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

12 lines
240 B
React
Raw Normal View History

2020-09-18 17:16:49 +02:00
import React from 'react';
import Page from 'component/page';
import SyncPassword from 'component/syncPassword';
export default function SignInWalletPasswordPage() {
return (
<Page authPage>
<SyncPassword />
</Page>
);
}