lbry-desktop/ui/modal/walletReceive/view.jsx

12 lines
287 B
React
Raw Normal View History

2019-09-30 17:48:30 -04:00
import React from 'react';
2019-11-22 16:13:00 -05:00
import WalletAddress from './node_modules/component/walletAddress';
import Page from './node_modules/component/page';
2019-09-30 17:48:30 -04:00
const WalletAddressPage = () => (
<Page className="main--contained">
<WalletAddress />
</Page>
);
export default WalletAddressPage;