AvaCloud API
AvaCloud App
AvaCloud Wallet as a Service
AvaCloud Wallet as a Service
  • AvaCloud Wallet as a Service SDK
  • 🚀Getting Started
    • Quickstart
  • ⚙️USAGE
    • 🪝Hooks
      • useAvaCloudWallet
      • useAuth
      • useSignMessage
      • useSignTransaction
      • useTransferTokens
      • useUserWallets
      • useChainId
    • UI Components
      • LoginButton
      • WalletButton
      • WalletDisplay
      • UserProfile
      • WalletCard
      • TokensView
      • SendView
      • ReceiveView
      • ExportView
    • 🛠️Advanced Usage
Powered by GitBook

© 2025 Ava Labs, Inc.

On this page

Was this helpful?

  1. USAGE
  2. UI Components

ExportView

Component for exporting wallet information

import { ExportView } from '@avalabs/avacloud-waas-react';

function ExportSection() {
  return (
    <ExportView
      onBack={() => {
        // Handle back navigation
      }}
    />
  );
}

Props

interface ExportViewProps {
  onBack: () => void;  // Required callback for back navigation
}

Features

  • Wallet information export interface

  • Required back navigation functionality

  • Secure export process

  • Handles wallet state automatically

PreviousReceiveViewNextAdvanced Usage

Last updated 27 days ago

Was this helpful?

⚙️