21 lines
400 B
JavaScript
21 lines
400 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
import Page from 'component/page';
|
|
import WalletSwap from 'component/walletSwap';
|
|
|
|
type Props = {};
|
|
|
|
export default function SwapPage(props: Props) {
|
|
return (
|
|
<Page
|
|
noSideNavigation
|
|
className="main--swap"
|
|
backout={{
|
|
backoutLabel: __('Done'),
|
|
title: __('Swap Bitcoin'),
|
|
}}
|
|
>
|
|
<WalletSwap />
|
|
</Page>
|
|
);
|
|
}
|