mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
44 lines
834 B
JavaScript
44 lines
834 B
JavaScript
import { createStackNavigator } from 'react-navigation';
|
|
|
|
import transactions from './screen/transactions';
|
|
import wallets from './screen/wallets';
|
|
import send from './screen/send';
|
|
import settings from './screen/settings';
|
|
import receive from './screen/receive';
|
|
|
|
/** @type {AppStorage} */
|
|
let BlueApp = require('./BlueApp');
|
|
|
|
const Tabs = createStackNavigator(
|
|
{
|
|
Wallets: {
|
|
screen: wallets,
|
|
path: 'wallets',
|
|
navigationOptions: {
|
|
title: 'Wallets',
|
|
},
|
|
},
|
|
Transactions: {
|
|
screen: transactions,
|
|
path: 'trans',
|
|
},
|
|
Send: {
|
|
screen: send,
|
|
path: 'cart',
|
|
},
|
|
Receive: {
|
|
screen: receive,
|
|
path: 'receive',
|
|
},
|
|
Settings: {
|
|
screen: settings,
|
|
path: 'settings',
|
|
},
|
|
},
|
|
{
|
|
headerMode: 'none',
|
|
},
|
|
);
|
|
|
|
export default Tabs;
|