mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
11 lines
242 B
JavaScript
11 lines
242 B
JavaScript
import React from 'react';
|
|
import WalletSend from 'component/walletSend';
|
|
import Page from 'component/page';
|
|
|
|
const WalletSendPage = () => (
|
|
<Page className="main--contained">
|
|
<WalletSend />
|
|
</Page>
|
|
);
|
|
|
|
export default WalletSendPage;
|