10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
import React from 'react';
|
|
import WalletSend from 'component/walletSend';
|
|
|
|
const WalletSendModal = () => (
|
|
<div>
|
|
<WalletSend />
|
|
</div>
|
|
);
|
|
|
|
export default WalletSendModal;
|