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

12 lines
287 B
React
Raw Normal View History

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