UNPKG

@enclavemoney/enclave-wallet-sdk

Version:

A simple enclave wallet SDK for React applications

12 lines (11 loc) 381 B
import React from "react"; import { ThemeMode } from "../../types/theme"; interface ActivityDetailsProps { activity?: any; activityId?: string; apiKey: string; onBack: () => void; theme?: ThemeMode; } export default function ActivityDetails({ activity: initialActivity, activityId, apiKey, onBack, theme, }: ActivityDetailsProps): React.JSX.Element; export {};