mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
33 lines
863 B
TypeScript
33 lines
863 B
TypeScript
import { createNativeStackNavigator } from '@react-navigation/native-stack';
|
|
import React from 'react';
|
|
|
|
import navigationStyle from '../components/navigationStyle';
|
|
import { useTheme } from '../components/themes';
|
|
import loc from '../loc';
|
|
import { WalletExportComponent } from './LazyLoadWalletExportStack';
|
|
|
|
export type WalletExportStackParamList = {
|
|
WalletExport: { walletID: string };
|
|
};
|
|
|
|
const Stack = createNativeStackNavigator<WalletExportStackParamList>();
|
|
|
|
const WalletExportStack = () => {
|
|
const theme = useTheme();
|
|
|
|
return (
|
|
<Stack.Navigator>
|
|
<Stack.Screen
|
|
name="WalletExport"
|
|
component={WalletExportComponent}
|
|
options={navigationStyle({
|
|
headerBackVisible: false,
|
|
title: loc.wallets.export_title,
|
|
})(theme)}
|
|
/>
|
|
</Stack.Navigator>
|
|
);
|
|
};
|
|
|
|
export default WalletExportStack;
|