2019-09-30 23:48:30 +02:00
|
|
|
import React from 'react';
|
2020-01-06 19:32:35 +01:00
|
|
|
import WalletAddress from 'component/walletAddress';
|
|
|
|
import Page from 'component/page';
|
2019-09-30 23:48:30 +02:00
|
|
|
|
|
|
|
const WalletAddressPage = () => (
|
|
|
|
<Page className="main--contained">
|
|
|
|
<WalletAddress />
|
|
|
|
</Page>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default WalletAddressPage;
|