11 lines
194 B
React
11 lines
194 B
React
|
import React from 'react';
|
||
|
import WalletSend from './node_modules/component/walletSend';
|
||
|
|
||
|
const WalletSendModal = () => (
|
||
|
<div>
|
||
|
<WalletSend />
|
||
|
</div>
|
||
|
);
|
||
|
|
||
|
export default WalletSendModal;
|