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

11 lines
179 B
React
Raw Normal View History

2019-11-22 22:13:00 +01:00
import React from 'react';
2020-01-06 19:32:35 +01:00
import WalletSend from 'component/walletSend';
2019-11-22 22:13:00 +01:00
const WalletSendModal = () => (
<div>
<WalletSend />
</div>
);
export default WalletSendModal;